pythonPackages.phpserialize: init at 1.3 (#25521)

* pythonPackages.phpserialize: init at 1.3

* pythonPackages.phpserialize: clarify test situation
This commit is contained in:
Jaakko Luttinen 2017-05-05 10:01:56 +03:00 committed by Jörg Thalheim
parent 948488343b
commit 96c0a6db3a
3 changed files with 25 additions and 0 deletions

View File

@ -242,6 +242,7 @@
jhhuh = "Ji-Haeng Huh <jhhuh.note@gmail.com>";
jirkamarsik = "Jirka Marsik <jiri.marsik89@gmail.com>";
jlesquembre = "José Luis Lafuente <jl@lafuente.me>";
jluttine = "Jaakko Luttinen <jaakko.luttinen@iki.fi>";
joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
joamaki = "Jussi Maki <joamaki@gmail.com>";
joelmo = "Joel Moberg <joel.moberg@gmail.com>";

View File

@ -0,0 +1,22 @@
{lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "phpserialize";
version = "1.3";
src = fetchPypi {
inherit pname version;
sha256 = "19qgkb9z4zjbjxlpwh2w6pxkz2j3iymnydi69jl0jg905lqjsrxz";
};
# project does not have tests at the moment
doCheck = false;
meta = {
description = "A port of the serialize and unserialize functions of PHP to Python";
homepage = http://github.com/mitsuhiko/phpserialize;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jluttine ];
};
}

View File

@ -8833,6 +8833,8 @@ in {
};
};
phpserialize = callPackage ../development/python-modules/phpserialize { };
pies = buildPythonPackage rec {
name = "pies-2.6.5";