nixpkgs/pkgs/development/python-modules/sortedcollections/default.nix
2018-10-24 10:20:40 +02:00

28 lines
551 B
Nix

{ 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;
};
}