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

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

  srcs = attrs.testout;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    attrs
    hypothesis
    pytestCheckHook
  ];
}