depot/third_party/nixpkgs/pkgs/development/python-modules/attrs/tests.nix

23 lines
296 B
Nix
Raw Normal View History

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