nixpkgs/pkgs/development/python-modules/pbxproj/default.nix
2026-02-08 04:22:36 +00:00

43 lines
806 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
docopt,
openstep-parser,
setuptools,
}:
buildPythonPackage rec {
pname = "pbxproj";
version = "4.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "kronenthaler";
repo = "mod-pbxproj";
tag = version;
hash = "sha256-Gb3JeMONOkQWm3pv2EXIU4aw1HJQiiYSr94sjTFVF/Q=";
};
build-system = [ setuptools ];
dependencies = [
docopt
openstep-parser
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"pbxproj"
"openstep_parser"
];
meta = {
description = "Python module to manipulate XCode projects ";
homepage = "https://github.com/kronenthaler/mod-pbxproj";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ilaumjd ];
};
}