Skip to content

Commit 96c0a6d

Browse files
jluttineMic92
authored andcommittedMay 5, 2017
pythonPackages.phpserialize: init at 1.3 (#25521)
* pythonPackages.phpserialize: init at 1.3 * pythonPackages.phpserialize: clarify test situation
1 parent 9484883 commit 96c0a6d

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed
 

‎lib/maintainers.nix

+1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@
242242
jhhuh = "Ji-Haeng Huh <jhhuh.note@gmail.com>";
243243
jirkamarsik = "Jirka Marsik <jiri.marsik89@gmail.com>";
244244
jlesquembre = "José Luis Lafuente <jl@lafuente.me>";
245+
jluttine = "Jaakko Luttinen <jaakko.luttinen@iki.fi>";
245246
joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
246247
joamaki = "Jussi Maki <joamaki@gmail.com>";
247248
joelmo = "Joel Moberg <joel.moberg@gmail.com>";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{lib, buildPythonPackage, fetchPypi}:
2+
3+
buildPythonPackage rec {
4+
name = "${pname}-${version}";
5+
pname = "phpserialize";
6+
version = "1.3";
7+
8+
src = fetchPypi {
9+
inherit pname version;
10+
sha256 = "19qgkb9z4zjbjxlpwh2w6pxkz2j3iymnydi69jl0jg905lqjsrxz";
11+
};
12+
13+
# project does not have tests at the moment
14+
doCheck = false;
15+
16+
meta = {
17+
description = "A port of the serialize and unserialize functions of PHP to Python";
18+
homepage = http://github.com/mitsuhiko/phpserialize;
19+
license = lib.licenses.bsd3;
20+
maintainers = with lib.maintainers; [ jluttine ];
21+
};
22+
}

‎pkgs/top-level/python-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -8833,6 +8833,8 @@ in {
88338833
};
88348834
};
88358835

8836+
phpserialize = callPackage ../development/python-modules/phpserialize { };
8837+
88368838
pies = buildPythonPackage rec {
88378839
name = "pies-2.6.5";
88388840

0 commit comments

Comments
 (0)
Please sign in to comment.