nixpkgs/pkgs/development/python-modules/serpy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
678 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, six
, pythonOlder
}:
2017-09-01 08:33:30 +00:00
buildPythonPackage rec {
pname = "serpy";
2017-12-30 11:27:11 +00:00
version = "0.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
2017-09-01 08:33:30 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 11:27:11 +00:00
sha256 = "3772b2a9923fbf674000ff51abebf6ea8f0fca0a2cfcbfa0d63ff118193d1ec5";
2017-09-01 08:33:30 +00:00
};
propagatedBuildInputs = [
six
];
2017-09-01 08:33:30 +00:00
# ImportError: No module named 'tests
doCheck = false;
pythonImportsCheck = [
"serpy"
];
meta = with lib; {
description = "Ridiculously fast object serialization";
homepage = "https://github.com/clarkduvall/serpy";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
2017-09-01 08:33:30 +00:00
}