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