nixpkgs-odroid-hc4/pkgs/development/python-modules/attrs/tests.nix
2025-12-20 09:59:59 +11:00

21 lines
276 B
Nix

{ buildPythonPackage
, pytestCheckHook
, attrs
, hypothesis
}:
buildPythonPackage {
pname = "attrs-tests";
inherit (attrs) version;
srcs = attrs.testout;
dontBuild = true;
dontInstall = true;
checkInputs = [
attrs
hypothesis
pytestCheckHook
];
}