Merge pull request #335001 from ilaumjd/pythonPackages.pbxproj

This commit is contained in:
Sandro 2024-08-22 11:26:59 +02:00 committed by GitHub
commit a682f335c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 45 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -9947,6 +9947,8 @@ self: super: with self; {
pbs-installer = callPackage ../development/python-modules/pbs-installer { };
pbxproj = callPackage ../development/python-modules/pbxproj { };
pc-ble-driver-py = callPackage ../development/python-modules/pc-ble-driver-py { };
pcapy-ng = callPackage ../development/python-modules/pcapy-ng {