1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "phpserialize";
9 version = "1.3";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "19qgkb9z4zjbjxlpwh2w6pxkz2j3iymnydi69jl0jg905lqjsrxz";
15 };
16
17 # project does not have tests at the moment
18 doCheck = false;
19
20 meta = {
21 description = "Port of the serialize and unserialize functions of PHP to Python";
22 homepage = "https://github.com/mitsuhiko/phpserialize";
23 license = lib.licenses.bsd3;
24 maintainers = with lib.maintainers; [ jluttine ];
25 };
26}