3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #169413 from fabaff/setupmeta-fix

python3Packages.setupmeta: add missing input
This commit is contained in:
Thiago Kenji Okada 2022-04-20 11:28:29 +01:00 committed by GitHub
commit 3f6e006387
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
, pytestCheckHook
, pythonOlder
, setuptools-scm
, six
}:
buildPythonPackage rec {
@ -36,6 +37,7 @@ buildPythonPackage rec {
mock
pep440
pytestCheckHook
six
];
preCheck = ''
@ -45,6 +47,7 @@ buildPythonPackage rec {
disabledTests = [
# Tests want to scan site-packages
"test_check_dependencies"
"test_clean"
"test_scenario"
"test_git_versioning"
];