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