mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
24 lines
308 B
Nix
24 lines
308 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
|
|
];
|
|
}
|