python311Packages.pytest-subtests: fix build

Checking runtime dependencies for pytest_subtests-0.11.0-py3-none-any.whl
  - attrs not installed
This commit is contained in:
Martin Weinelt 2023-12-05 02:11:36 +01:00
parent 0ee92f9c37
commit 96a328c424
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,10 +1,17 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
# build-system
, setuptools
, setuptools-scm
# dependencies
, attrs
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
@ -24,6 +31,10 @@ buildPythonPackage rec {
setuptools-scm
];
propagatedBuildInputs = [
attrs
];
nativeCheckInputs = [
pytestCheckHook
];