Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at domenkozar-patch-1 21 lines 276 B view raw
1{ buildPythonPackage 2, pytestCheckHook 3, attrs 4, hypothesis 5}: 6 7buildPythonPackage { 8 pname = "attrs-tests"; 9 inherit (attrs) version; 10 11 srcs = attrs.testout; 12 13 dontBuild = true; 14 dontInstall = true; 15 16 checkInputs = [ 17 attrs 18 hypothesis 19 pytestCheckHook 20 ]; 21}