blob: 0a13af92ee51ff3e199a865e4574ff201e9ac745 (
plain) (
blame)
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
55
56
57
58
59
60
61
62
63
|
{ lib
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, hatchling
, jinja2
, lxml
, pytestCheckHook
, python
, pythonOlder
, pythonRelaxDepsHook
, xmlschema
}:
buildPythonPackage rec {
pname = "reqif";
version = "0.0.40";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "strictdoc-project";
repo = "reqif";
rev = "refs/tags/${version}";
hash = "sha256-VQvwynFv/DN5RHT00rxtDcJ9wsEpKdsh3rdyUakBr2Q=";
};
postPatch = ''
substituteInPlace ./tests/unit/conftest.py \
--replace-fail "os.path.abspath(os.path.join(__file__, \"../../../../reqif\"))" \
"\"${placeholder "out"}/${python.sitePackages}/reqif\""
'';
nativeBuildInputs = [
hatchling
pythonRelaxDepsHook
];
propagatedBuildInputs = [
beautifulsoup4
lxml
jinja2
xmlschema
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"reqif"
];
meta = with lib; {
description = "Python library for ReqIF format";
mainProgram = "reqif";
homepage = "https://github.com/strictdoc-project/reqif";
changelog = "https://github.com/strictdoc-project/reqif/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ yuu ];
};
}
|