Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "pytest-lazy-fixture"; 9 version = "0.6.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1b0hmnsxw4s2wf9pks8dg6dfy5cx3zcbzs8517lfccxsfizhqz8f"; 14 }; 15 16 nativeCheckInputs = [ 17 pytestCheckHook 18 ]; 19 20 meta = with lib; { 21 description = "Helps to use fixtures in pytest.mark.parametrize"; 22 homepage = "https://github.com/pytest-dev/pytest-repeat"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ tobim ]; 25 }; 26}