File tree 3 files changed +25
-0
lines changed
development/python-modules/phpserialize
3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 242
242
jhhuh = "Ji-Haeng Huh <jhhuh.note@gmail.com>" ;
243
243
jirkamarsik = "Jirka Marsik <jiri.marsik89@gmail.com>" ;
244
244
jlesquembre = "José Luis Lafuente <jl@lafuente.me>" ;
245
+ jluttine = "Jaakko Luttinen <jaakko.luttinen@iki.fi>" ;
245
246
joachifm = "Joachim Fasting <joachifm@fastmail.fm>" ;
246
247
joamaki = "Jussi Maki <joamaki@gmail.com>" ;
247
248
joelmo = "Joel Moberg <joel.moberg@gmail.com>" ;
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -8833,6 +8833,8 @@ in {
8833
8833
};
8834
8834
};
8835
8835
8836
+ phpserialize = callPackage ../development/python-modules/phpserialize { };
8837
+
8836
8838
pies = buildPythonPackage rec {
8837
8839
name = "pies-2.6.5";
8838
8840
You can’t perform that action at this time.
0 commit comments