2021-06-28 23:13:55 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, pytestCheckHook
|
|
|
|
, attrs
|
|
|
|
, hypothesis
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
pname = "attrs-tests";
|
|
|
|
inherit (attrs) version;
|
2023-01-20 10:41:00 +00:00
|
|
|
format = "other";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
srcs = attrs.testout;
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontInstall = true;
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
attrs
|
|
|
|
hypothesis
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
}
|