a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
22 lines
302 B
Nix
22 lines
302 B
Nix
{ buildPythonPackage
|
|
, pytestCheckHook
|
|
, attrs
|
|
, hypothesis
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "attrs-tests";
|
|
inherit (attrs) version;
|
|
format = "other";
|
|
|
|
srcs = attrs.testout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
attrs
|
|
hypothesis
|
|
pytestCheckHook
|
|
];
|
|
}
|