1{lib, buildPythonPackage, fetchPypi}:
2
3buildPythonPackage 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 = https://github.com/mitsuhiko/phpserialize;
19 license = lib.licenses.bsd3;
20 maintainers = with lib.maintainers; [ jluttine ];
21 };
22}