nixpkgs/pkgs/development/python-modules/attrs/tests.nix
2024-05-22 17:32:03 +02:00

24 lines
308 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
];
}