2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
setuptools-scm,
|
|
|
|
pytestCheckHook,
|
|
|
|
git,
|
|
|
|
mercurial,
|
|
|
|
pip,
|
|
|
|
virtualenv,
|
2021-09-26 12:46:18 +00:00
|
|
|
}:
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
buildPythonPackage {
|
2021-09-26 12:46:18 +00:00
|
|
|
pname = "setuptools-scm-tests";
|
2023-07-15 17:15:38 +00:00
|
|
|
inherit (setuptools-scm) version src;
|
2023-01-20 10:41:00 +00:00
|
|
|
format = "other";
|
2021-09-26 12:46:18 +00:00
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontInstall = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-09-26 12:46:18 +00:00
|
|
|
pytestCheckHook
|
|
|
|
setuptools-scm
|
|
|
|
pip
|
|
|
|
virtualenv
|
|
|
|
git
|
|
|
|
mercurial
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# network access
|
|
|
|
"test_pip_download"
|
|
|
|
];
|
|
|
|
}
|