ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / python-modules / attrs / tests.nix
blobd657ba1ffc5a42f07e6ad2c8da5adf5ab0720111
2   buildPythonPackage,
3   pytestCheckHook,
4   attrs,
5   hypothesis,
6 }:
8 buildPythonPackage {
9   pname = "attrs-tests";
10   inherit (attrs) version;
11   format = "other";
13   srcs = attrs.testout;
15   dontBuild = true;
16   dontInstall = true;
18   nativeCheckInputs = [
19     attrs
20     hypothesis
21     pytestCheckHook
22   ];