diff options
Diffstat (limited to 'pkgs/development/python-modules/pbxproj/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pbxproj/default.nix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pbxproj/default.nix b/pkgs/development/python-modules/pbxproj/default.nix new file mode 100644 index 000000000000..a9635b873729 --- /dev/null +++ b/pkgs/development/python-modules/pbxproj/default.nix @@ -0,0 +1,43 @@ +{ + 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 ]; + }; +} |