2018-10-16 23:09:58 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sortedcontainers
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sortedcollections";
|
2019-01-16 17:48:50 +00:00
|
|
|
version = "1.1.2";
|
2018-10-16 23:09:58 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-16 17:48:50 +00:00
|
|
|
sha256 = "12nkw69lnyvh9wy6rsd0ng4bcia81vkhj1rj1kj1k3vzppn0sgmr";
|
2018-10-16 23:09:58 +01:00
|
|
|
};
|
|
|
|
|
2019-01-16 18:56:29 +00:00
|
|
|
propagatedBuildInputs = [ sortedcontainers ];
|
2018-10-16 23:09:58 +01:00
|
|
|
|
2019-01-16 18:56:29 +00:00
|
|
|
# No tests in PyPi tarball
|
2018-10-16 23:09:58 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python Sorted Collections";
|
|
|
|
homepage = http://www.grantjenks.com/docs/sortedcollections/;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|