depot/third_party/nixpkgs/pkgs/development/python-modules/squaremap/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
607 B
Nix

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