blob: 847974b5cbcf95c5f6c2fd37823661df028e4b21 (
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
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
hatchling,
packaging,
tomli,
pyyaml,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "dparse";
version = "0.6.4";
pyproject = true;
src = fetchFromGitHub {
owner = "pyupio";
repo = "dparse";
tag = version;
hash = "sha256-LnsmJtWLjV3xoSjacfR9sUwPlOjQTRBWirJVtIJSE8A=";
};
build-system = [ hatchling ];
dependencies = [ packaging ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
optional-dependencies = {
# FIXME pipenv = [ pipenv ];
conda = [ pyyaml ];
};
nativeCheckInputs = [
pytestCheckHook
]
++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "dparse" ];
disabledTests = [
# requires unpackaged dependency pipenv
"test_update_pipfile"
];
meta = {
description = "Parser for Python dependency files";
homepage = "https://github.com/pyupio/dparse";
changelog = "https://github.com/pyupio/dparse/blob/${version}/HISTORY.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ thomasdesr ];
};
}
|