1{
2 buildPythonPackage,
3 pytestCheckHook,
4 attrs,
5 hypothesis,
6}:
7
8buildPythonPackage {
9 pname = "attrs-tests";
10 inherit (attrs) version;
11 format = "other";
12
13 srcs = attrs.testout;
14
15 dontBuild = true;
16 dontInstall = true;
17
18 nativeCheckInputs = [
19 attrs
20 hypothesis
21 pytestCheckHook
22 ];
23}