pythonPackages.phpserialize: init at 1.3 (#25521)
* pythonPackages.phpserialize: init at 1.3 * pythonPackages.phpserialize: clarify test situation
This commit is contained in:
parent
948488343b
commit
96c0a6db3a
@ -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>";
|
||||
|
22
pkgs/development/python-modules/phpserialize/default.nix
Normal file
22
pkgs/development/python-modules/phpserialize/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -8833,6 +8833,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
phpserialize = callPackage ../development/python-modules/phpserialize { };
|
||||
|
||||
pies = buildPythonPackage rec {
|
||||
name = "pies-2.6.5";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user