mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 23:47:47 +00:00
Merge pull request #335100 from ilaumjd/pythonPackages.openstep-parser
python312Packages.openstep-parser: init at 2.0.1
This commit is contained in:
commit
5ed0850a76
@ -8713,6 +8713,12 @@
|
||||
githubId = 7481521;
|
||||
name = "Balázs Lengyel";
|
||||
};
|
||||
ilaumjd = {
|
||||
email = "ilaumjd@gmail.com";
|
||||
github = "ilaumjd";
|
||||
githubId = 16514431;
|
||||
name = "Ilham AM";
|
||||
};
|
||||
ilian = {
|
||||
email = "ilian@tuta.io";
|
||||
github = "ilian";
|
||||
|
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 ];
|
||||
};
|
||||
}
|
@ -4657,6 +4657,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