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

buildPythonPackage rec {
  pname = "sortedcollections";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "12q1gf81l53mv634hk259aql69k9572nfv5gsn8gxlywdly2z63b";
  };

  buildInputs = [ sortedcontainers ];

  # wants to test all python versions with tox:
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python Sorted Collections";
    homepage = http://www.grantjenks.com/docs/sortedcollections/;
    license = licenses.asl20;
  };

}