blob: 426b131e22f5db06ac880b89337b5aba5c30d34f (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
jinja2,
lxml,
pytestCheckHook,
python,
xmlschema,
}:
buildPythonPackage rec {
pname = "reqif";
version = "0.0.48";
pyproject = true;
src = fetchFromGitHub {
owner = "strictdoc-project";
repo = "reqif";
tag = version;
hash = "sha256-bDbItyn5nhoYZHReqfvD1mfq0dilZPUEusOC/L4XNek=";
};
postPatch = ''
substituteInPlace ./tests/unit/conftest.py \
--replace-fail "os.path.abspath(os.path.join(__file__, \"../../../../reqif\"))" \
"\"${placeholder "out"}/${python.sitePackages}/reqif\""
'';
build-system = [
hatchling
];
dependencies = with python.pkgs; [
lxml
jinja2
xmlschema
openpyxl
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "reqif" ];
meta = {
description = "Python library for ReqIF format";
mainProgram = "reqif";
homepage = "https://github.com/strictdoc-project/reqif";
changelog = "https://github.com/strictdoc-project/reqif/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|