9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
31 lines
442 B
Nix
31 lines
442 B
Nix
{ buildPythonPackage
|
|
, setuptools-scm
|
|
, pytestCheckHook
|
|
, git
|
|
, mercurial
|
|
, pip
|
|
, virtualenv
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "setuptools-scm-tests";
|
|
inherit (setuptools-scm) version src;
|
|
format = "other";
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
setuptools-scm
|
|
pip
|
|
virtualenv
|
|
git
|
|
mercurial
|
|
];
|
|
|
|
disabledTests = [
|
|
# network access
|
|
"test_pip_download"
|
|
];
|
|
}
|