nixpkgs/pkgs/development/python-modules/phpserialize/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

23 lines
576 B
Nix

{lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "phpserialize";
version = "1.3";
format = "setuptools";
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 = "https://github.com/mitsuhiko/phpserialize";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jluttine ];
};
}