pythonPackages.sortedcollections: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
36d0404ed6
commit
bf98e3b446
@@ -0,0 +1,27 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, sortedcontainers
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sortedcollections";
|
||||
version = "0.4.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "12dlzln9gyv8smsy2k6d6dmr0ywrpwyrr1cjy649ia5h1g7xdvwa";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user