python312Packages.pytest-voluptuous: refactor (#356108)

This commit is contained in:
Fabian Affolter 2024-11-15 22:43:49 +01:00 committed by GitHub
commit 12a9e2fe50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,8 @@
pytest,
pytestCheckHook,
pythonOlder,
setuptools-scm,
setuptools,
six,
voluptuous,
}:
@ -12,7 +14,7 @@
buildPythonPackage rec {
pname = "pytest-voluptuous";
version = "1.2.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -23,9 +25,14 @@ buildPythonPackage rec {
hash = "sha256-xdj4qCSSJQI9Rb1WyUYrAg1I5wQ5o6IJyIjJAafP/LY=";
};
build-system = [
setuptools
setuptools-scm
];
buildInputs = [ pytest ];
propagatedBuildInputs = [ voluptuous ];
dependencies = [ voluptuous ];
nativeCheckInputs = [
pytestCheckHook