pythonPackages.ordered-set: init at 3.0.1
This package has working tests! A minor miracle in the Python tree.
This commit is contained in:
parent
14c88b67c1
commit
a502f2c4c8
26
pkgs/development/python-modules/ordered-set/default.nix
Normal file
26
pkgs/development/python-modules/ordered-set/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ buildPythonPackage, fetchPypi, lib, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ordered-set";
|
||||
version = "3.0.1";
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0yyfkkfzpwlx4jlfqzb7p1xpzmn2jyzq2qlakqx62pxizfzxfvrx";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
py.test test.py
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A MutableSet that remembers its order, so that every entry has an index.";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
@ -334,6 +334,8 @@ in {
|
||||
|
||||
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
||||
|
||||
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
||||
|
||||
outcome = callPackage ../development/python-modules/outcome {};
|
||||
|
||||
pdf2image = callPackage ../development/python-modules/pdf2image { };
|
||||
|
Loading…
Reference in New Issue
Block a user