at master 806 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pytestCheckHook, 6 docopt, 7 openstep-parser, 8 setuptools, 9}: 10 11buildPythonPackage rec { 12 pname = "pbxproj"; 13 version = "4.3.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "kronenthaler"; 18 repo = "mod-pbxproj"; 19 tag = version; 20 hash = "sha256-A7kYjlMr0PDZHdZLhs7Mn2Ihx0XKQUbVaRgWcMoWM7E="; 21 }; 22 23 build-system = [ setuptools ]; 24 25 dependencies = [ 26 docopt 27 openstep-parser 28 ]; 29 30 nativeCheckInputs = [ pytestCheckHook ]; 31 32 pythonImportsCheck = [ 33 "pbxproj" 34 "openstep_parser" 35 ]; 36 37 meta = { 38 description = "Python module to manipulate XCode projects "; 39 homepage = "https://github.com/kronenthaler/mod-pbxproj"; 40 license = lib.licenses.mit; 41 maintainers = with lib.maintainers; [ ilaumjd ]; 42 }; 43}