Skip to content

Commit

Permalink
python312Packages.openstep-parser: init at 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ilaumjd committed Aug 21, 2024
1 parent a6be7ea commit 0cdca2f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/development/python-modules/openstep-parser/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 0cdca2f

Please sign in to comment.