about summary refs log tree commit diff
path: root/pkgs/development/python-modules/attrs/tests.nix
blob: d657ba1ffc5a42f07e6ad2c8da5adf5ab0720111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  buildPythonPackage,
  pytestCheckHook,
  attrs,
  hypothesis,
}:

buildPythonPackage {
  pname = "attrs-tests";
  inherit (attrs) version;
  format = "other";

  srcs = attrs.testout;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    attrs
    hypothesis
    pytestCheckHook
  ];
}