1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pytestCheckHook, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "openstep-parser"; 11 version = "2.0.1"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "kronenthaler"; 16 repo = "openstep-parser"; 17 tag = version; 18 hash = "sha256-gvfzBLLaal0Vad3C4m4wIKwJpmlhewsK4A5yeN8l6qU="; 19 }; 20 21 build-system = [ setuptools ]; 22 23 nativeCheckInputs = [ pytestCheckHook ]; 24 25 pythonImportsCheck = [ "openstep_parser" ]; 26 27 meta = { 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 ]; 32 }; 33}