summary refs log tree commit diff
path: root/pkgs/development/python-modules/squaremap/default.nix
blob: c17a88435dd67ca59da00fb315dcfea145e8f628 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, 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 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
  };

}