1{
2 buildPythonPackage,
3 setuptools-scm,
4 pytestCheckHook,
5 git,
6 mercurial,
7 pip,
8 virtualenv,
9}:
10
11buildPythonPackage {
12 pname = "setuptools-scm-tests";
13 inherit (setuptools-scm) version src;
14 format = "other";
15
16 dontBuild = true;
17 dontInstall = true;
18
19 nativeCheckInputs = [
20 pytestCheckHook
21 setuptools-scm
22 pip
23 virtualenv
24 git
25 mercurial
26 ];
27
28 disabledTests = [
29 # network access
30 "test_pip_download"
31 ];
32}