core/pkgs/by-name/py/python/python-modules/attrs/tests.nix
2024-05-13 11:34:52 -04:00

23 lines
302 B
Nix

{ buildPythonPackage
, pytestCheckHook
, attrs
, hypothesis
}:
buildPythonPackage {
pname = "attrs-tests";
inherit (attrs) version;
format = "other";
srcs = attrs.testout;
dontBuild = true;
dontInstall = true;
nativeCheckInputs = [
attrs
hypothesis
pytestCheckHook
];
}