My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/setuptools-scm/tests.nix

32 lines
445 B

{ 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"
];
}