Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 poetry-core, 6 pytestCheckHook, 7}: 8 9buildPythonPackage rec { 10 pname = "pytest-lazy-fixtures"; 11 version = "1.1.2"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "dev-petrov"; 16 repo = "pytest-lazy-fixtures"; 17 tag = version; 18 hash = "sha256-EkvSmSTwoWmQlUZ4qBBqboOomxwn72H8taJ3CY142ms="; 19 }; 20 21 build-system = [ poetry-core ]; 22 23 dependencies = [ pytestCheckHook ]; 24 25 pythonImportsCheck = [ "pytest_lazy_fixtures" ]; 26 27 meta = with lib; { 28 description = "Allows you to use fixtures in @pytest.mark.parametrize"; 29 homepage = "https://github.com/dev-petrov/pytest-lazy-fixtures"; 30 license = licenses.mit; 31 maintainers = [ ]; 32 }; 33}