about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/squaremap/default.nix
blob: 3a0e95ab77e36ee8c92e18052c42c979258bc0c7 (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.4";
  disabled = isPy3k;

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

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

}