Merge pull request #335100 from ilaumjd/pythonPackages.openstep-parser

python312Packages.openstep-parser: init at 2.0.1
This commit is contained in:
Emily 2024-08-21 19:16:18 +01:00 committed by GitHub
commit 5ed0850a76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 41 additions and 0 deletions

View File

@ -8713,6 +8713,12 @@
githubId = 7481521; githubId = 7481521;
name = "Balázs Lengyel"; name = "Balázs Lengyel";
}; };
ilaumjd = {
email = "ilaumjd@gmail.com";
github = "ilaumjd";
githubId = 16514431;
name = "Ilham AM";
};
ilian = { ilian = {
email = "ilian@tuta.io"; email = "ilian@tuta.io";
github = "ilian"; github = "ilian";

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

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