blob: 9375a5c16c34734544306f7a7a2404f20055fac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "openstep-parser";
version = "2.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "kronenthaler";
repo = "openstep-parser";
tag = version;
hash = "sha256-ivPvkvVWXw5ftaGvwBR+JxBIlisI0p6k3i/8V2HlaqQ=";
};
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 ];
};
}
|