2018-10-16 23:09:58 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sortedcontainers
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sortedcollections";
|
2018-10-24 05:51:06 +01:00
|
|
|
version = "1.0.1";
|
2018-10-16 23:09:58 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 05:51:06 +01:00
|
|
|
sha256 = "12q1gf81l53mv634hk259aql69k9572nfv5gsn8gxlywdly2z63b";
|
2018-10-16 23:09:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|