python312Packages.openstep-parser: init at 2.0.1

This commit is contained in:
ilaumjd 2024-08-16 08:56:23 +07:00
parent a6be7eaae3
commit 0cdca2f803
No known key found for this signature in database
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "openstep-parser";
version = "2.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "kronenthaler";
repo = "openstep-parser";
rev = "refs/tags/${version}";
hash = "sha256-gvfzBLLaal0Vad3C4m4wIKwJpmlhewsK4A5yeN8l6qU=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "openstep_parser" ];
meta = {
description = "OpenStep plist parser for Python";
homepage = "https://github.com/kronenthaler/openstep-parser";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ ilaumjd ];
};
}

View File

@ -4649,6 +4649,8 @@ self: super: with self; {
openllm-core = callPackage ../development/python-modules/openllm-core { };
openstep-parser = callPackage ../development/python-modules/openstep-parser { };
openstep-plist = callPackage ../development/python-modules/openstep-plist { };
glyphsets = callPackage ../development/python-modules/glyphsets { };