blob: b1717d8829d3e86b2348bb4b875b8d367724b0bd (
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
|
{
buildPythonPackage,
setuptools-scm,
pytestCheckHook,
git,
mercurial,
pip,
virtualenv,
}:
buildPythonPackage {
pname = "setuptools-scm-tests";
inherit (setuptools-scm) version src;
pyproject = false;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
pytestCheckHook
setuptools-scm
pip
virtualenv
git
mercurial
];
disabledTests = [
# network access
"test_pip_download"
];
}
|