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:
Corbin 2018-07-28 07:23:41 -07:00
parent 14c88b67c1
commit a502f2c4c8
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

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