pythonPackages.squaremap: mark broken

wxPython is unable to be detected by setuptools
This commit is contained in:
Jonathan Ringer 2019-12-20 22:35:37 -08:00 committed by Frederik Rietdijk
parent 62094862af
commit 42a535b49c

View File

@ -2,6 +2,8 @@
, buildPythonPackage , buildPythonPackage
, isPy3k , isPy3k
, fetchPypi , fetchPypi
, six
, wxPython
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -10,14 +12,18 @@ buildPythonPackage rec {
disabled = isPy3k; disabled = isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; pname = "SquareMap";
sha256 = "b16ce5950cbfa63e3284015095293cd26ed5e26045fd14d488fb825b4f95e9a8"; inherit version;
sha256 = "1a79jm7mp0pvi3a19za5c3idavnj7hlral01hhr3x9mz1jayav5i";
}; };
propagatedBuildInputs = [ six wxPython ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Hierarchic visualization control for wxPython"; description = "Hierarchic visualization control for wxPython";
homepage = https://launchpad.net/squaremap; homepage = https://launchpad.net/squaremap;
license = licenses.bsd3; license = licenses.bsd3;
broken = true; # wxPython doesn't seem to be able to be detected by pip
}; };
} }