summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pbxproj/default.nix
blob: 38e8011b369050108ade9c8d7d19dcb07e3b2295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  docopt,
  openstep-parser,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pbxproj";
  version = "4.3.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "kronenthaler";
    repo = "mod-pbxproj";
    tag = version;
    hash = "sha256-Kwt/ellGOZBenYBCCW13pSMsPVdJyiEklIPMtw/UDvI=";
  };

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