fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
34 lines
673 B
Nix
34 lines
673 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "serpy";
|
|
version = "0.3.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "3772b2a9923fbf674000ff51abebf6ea8f0fca0a2cfcbfa0d63ff118193d1ec5";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
# 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; [ ];
|
|
};
|
|
}
|