pythonPackages.serpy: init at 0.1.1

This commit is contained in:
betaboon 2017-09-01 10:33:30 +02:00 committed by Frederik Rietdijk
parent 3836ee50e3
commit 7e7f91d23a
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi,
flake8, py, pyflakes, six, tox
}:
buildPythonPackage rec {
pname = "serpy";
name = "${pname}-${version}";
version = "0.1.1";
meta = {
description = "ridiculously fast object serialization";
homepage = https://github.com/clarkduvall/serpy;
license = lib.licenses.mit;
};
src = fetchPypi {
inherit pname version;
sha256 = "0r9wn99x9nbqxfancnq9jh3cn83i1b6gc79xj0ipnxixp661yj5i";
};
buildInputs = [ flake8 py pyflakes tox ];
propagatedBuildInputs = [ six ];
# ImportError: No module named 'tests
doCheck = false;
}

View file

@ -20206,6 +20206,8 @@ in {
'';
};
serpy = callPackage ../development/python-modules/serpy { };
setuptools_scm = callPackage ../development/python-modules/setuptools_scm { };
setuptoolsDarcs = buildPythonPackage rec {