1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, sortedcontainers
5}:
6
7buildPythonPackage rec {
8 pname = "sortedcollections";
9 version = "1.1.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "12nkw69lnyvh9wy6rsd0ng4bcia81vkhj1rj1kj1k3vzppn0sgmr";
14 };
15
16 propagatedBuildInputs = [ sortedcontainers ];
17
18 # No tests in PyPi tarball
19 doCheck = false;
20
21 meta = with stdenv.lib; {
22 description = "Python Sorted Collections";
23 homepage = http://www.grantjenks.com/docs/sortedcollections/;
24 license = licenses.asl20;
25 };
26
27}