blob: 4c7ee4a66f4c483996352ec710de346e3e7dd625 (
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
|
{
buildPythonPackage,
fetchPypi,
lib,
pypiserver,
pytestCheckHook,
setuptools-scm,
virtualenv,
}:
buildPythonPackage rec {
pname = "setuptools-declarative-requirements";
version = "1.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-V6W5u5rTUMJ46Kpr5M3rvNklubpx1qcSoXimGM+4mPc=";
};
buildInputs = [ setuptools-scm ];
nativeCheckInputs = [
pypiserver
pytestCheckHook
virtualenv
];
# Tests use network
doCheck = false;
pythonImportsCheck = [ "declarative_requirements" ];
meta = {
homepage = "https://github.com/s0undt3ch/setuptools-declarative-requirements";
description = "Declarative setuptools Config Requirements Files Support";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.austinbutler ];
};
}
|