Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, pytestCheckHook 6}: 7 8buildPythonPackage rec { 9 pname = "pytest-check"; 10 version = "2.1.4"; 11 format = "flit"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-AbN/1wPaD6ZntwF68fBGDHRKhfHuh2de4+D5Ssw98XI="; 16 }; 17 18 buildInputs = [ 19 pytest 20 ]; 21 22 nativeCheckInputs = [ 23 pytestCheckHook 24 ]; 25 26 meta = with lib; { 27 description = "pytest plugin allowing multiple failures per test"; 28 homepage = "https://github.com/okken/pytest-check"; 29 license = licenses.mit; 30 maintainers = [ maintainers.flokli ]; 31 }; 32}