repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
setuptools-scm
/
tests.nix
blob
b679a0f5ca4c344d082a4c58a85715ea033c7002
1
{ buildPythonPackage
2
, setuptools-scm
3
, pytestCheckHook
4
, git
5
, mercurial
6
, pip
7
, virtualenv
8
}:
9
10
buildPythonPackage {
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
}