summary refs log tree commit diff
path: root/pkgs/development/python-modules/squaremap/default.nix
blob: f237d982abb895a764502f556a91913eb137ce28 (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
{ stdenv
, buildPythonPackage
, isPy3k
, fetchPypi
}:

buildPythonPackage rec {
  pname = "squaremap";
  version = "1.0.5";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "b16ce5950cbfa63e3284015095293cd26ed5e26045fd14d488fb825b4f95e9a8";
  };

  meta = with stdenv.lib; {
    description = "Hierarchic visualization control for wxPython";
    homepage = https://launchpad.net/squaremap;
    license = licenses.bsd3;
  };

}