saunafs: 4.6.0 -> 4.7.0 (#379649)
[NixPkgs.git] / pkgs / development / python-modules / pytest-lazy-fixtures / default.nix
blobf9921925129775d9f3d89685b96d52b6d5f18db9
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "pytest-lazy-fixtures";
11   version = "1.1.1";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "dev-petrov";
16     repo = "pytest-lazy-fixtures";
17     tag = version;
18     hash = "sha256-2gaGIv4vfMdhLXQeYMbbx9B6tIsCGw4rytaO8bfRuEI=";
19   };
21   build-system = [ poetry-core ];
23   dependencies = [ pytestCheckHook ];
25   pythonImportsCheck = [ "pytest_lazy_fixtures" ];
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   };