22 lines
276 B
Nix
22 lines
276 B
Nix
|
{ buildPythonPackage
|
||
|
, pytestCheckHook
|
||
|
, attrs
|
||
|
, hypothesis
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage {
|
||
|
pname = "attrs-tests";
|
||
|
inherit (attrs) version;
|
||
|
|
||
|
srcs = attrs.testout;
|
||
|
|
||
|
dontBuild = true;
|
||
|
dontInstall = true;
|
||
|
|
||
|
checkInputs = [
|
||
|
attrs
|
||
|
hypothesis
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
}
|