mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00: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"
|
||
|
];
|
||
|
}
|