python312Packages.openstep-parser: init at 2.0.1
This commit is contained in:
parent
a6be7eaae3
commit
0cdca2f803
33
pkgs/development/python-modules/openstep-parser/default.nix
Normal file
33
pkgs/development/python-modules/openstep-parser/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user