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