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