pythonPackages.phpserialize: init at 1.3 (#25521)

* pythonPackages.phpserialize: init at 1.3

* pythonPackages.phpserialize: clarify test situation
This commit is contained in:
Jaakko Luttinen
2017-05-05 10:01:56 +03:00
committed by Jörg Thalheim
parent 948488343b
commit 96c0a6db3a
3 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "phpserialize";
version = "1.3";
src = fetchPypi {
inherit pname version;
sha256 = "19qgkb9z4zjbjxlpwh2w6pxkz2j3iymnydi69jl0jg905lqjsrxz";
};
# project does not have tests at the moment
doCheck = false;
meta = {
description = "A port of the serialize and unserialize functions of PHP to Python";
homepage = http://github.com/mitsuhiko/phpserialize;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jluttine ];
};
}