summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/attrs/tests.nix
blob: 9181504fcaded3eba558ecadf72d56f5d3e1e22a (plain)
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;
  pyproject = false;

  srcs = attrs.testout;

  dontBuild = true;
  dontInstall = true;

  nativeCheckInputs = [
    attrs
    hypothesis
    pytestCheckHook
  ];
}