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

34 lines
681 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, python
, isPy27
, enum34
2019-10-26 21:58:10 +00:00
, attrs
, pytz
}:
buildPythonPackage rec {
pname = "serpent";
2020-06-06 06:47:31 +00:00
version = "1.30.2";
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:31 +00:00
sha256 = "72753820246a7d8486e8b385353e3bbf769abfceec2e850fa527a288b084ff7a";
};
2020-05-04 18:32:01 +00:00
propagatedBuildInputs = lib.optionals isPy27 [ enum34 ];
2019-10-26 21:58:10 +00:00
checkInputs = [ attrs pytz ];
checkPhase = ''
${python.interpreter} setup.py test
'';
meta = with lib; {
description = "A simple serialization library based on ast.literal_eval";
homepage = "https://github.com/irmen/Serpent";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}