depot/third_party/nixpkgs/pkgs/development/python-modules/pbxproj/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

43 lines
821 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
docopt,
openstep-parser,
setuptools,
}:
buildPythonPackage rec {
pname = "pbxproj";
version = "4.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "kronenthaler";
repo = "mod-pbxproj";
rev = "refs/tags/${version}";
hash = "sha256-srtS6ggVnpffEa57LL2OzfC2mVd9uLxUL6LzxqPVLdo=";
};
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 ];
};
}