Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / serpent / default.nix
blob8be976ca36428533a42e5df1c97ce13c8536a787
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , isPy27
6 , enum34
7 , attrs
8 , pytz
9 }:
11 buildPythonPackage rec {
12   pname = "serpent";
13   version = "1.41";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-BAcDX+PGZEOH1Iz/FGfVqp/v+BTQc3K3hnftDuPtcJU=";
19   };
21   propagatedBuildInputs = lib.optionals isPy27 [ enum34 ];
23   nativeCheckInputs = [ attrs pytz ];
24   checkPhase = ''
25     ${python.interpreter} setup.py test
26   '';
28   meta = with lib; {
29     description = "A simple serialization library based on ast.literal_eval";
30     homepage = "https://github.com/irmen/Serpent";
31     license = licenses.mit;
32     maintainers = with maintainers; [ prusnak ];
33     };