a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
33 lines
471 B
Nix
33 lines
471 B
Nix
{ buildPythonPackage
|
|
, setuptools-scm
|
|
, pytestCheckHook
|
|
, git
|
|
, mercurial
|
|
, pip
|
|
, virtualenv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-scm-tests";
|
|
inherit (setuptools-scm) version;
|
|
format = "other";
|
|
|
|
src = setuptools-scm.src;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
setuptools-scm
|
|
pip
|
|
virtualenv
|
|
git
|
|
mercurial
|
|
];
|
|
|
|
disabledTests = [
|
|
# network access
|
|
"test_pip_download"
|
|
];
|
|
}
|