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