0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
22 lines
296 B
Nix
22 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
|
|
];
|
|
}
|