mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
34 lines
451 B
Nix
34 lines
451 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, setuptools-scm
|
|
, pytestCheckHook
|
|
, git
|
|
, mercurial
|
|
, pip
|
|
, virtualenv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-scm-tests";
|
|
inherit (setuptools-scm) version;
|
|
|
|
src = setuptools-scm.src;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
setuptools-scm
|
|
pip
|
|
virtualenv
|
|
git
|
|
mercurial
|
|
];
|
|
|
|
disabledTests = [
|
|
# network access
|
|
"test_pip_download"
|
|
];
|
|
}
|