nixpkgs/pkgs/development/python-modules/attrs/tests.nix
2023-01-05 01:08:48 +01:00

23 lines
296 B
Nix

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