9 buildPythonPackage rec {
10 pname = "openstep-parser";
14 src = fetchFromGitHub {
15 owner = "kronenthaler";
16 repo = "openstep-parser";
17 rev = "refs/tags/${version}";
18 hash = "sha256-gvfzBLLaal0Vad3C4m4wIKwJpmlhewsK4A5yeN8l6qU=";
21 build-system = [ setuptools ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "openstep_parser" ];
28 description = "OpenStep plist parser for Python";
29 homepage = "https://github.com/kronenthaler/openstep-parser";
30 license = lib.licenses.bsd2;
31 maintainers = with lib.maintainers; [ ilaumjd ];