about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-lazy-fixture/default.nix
blob: 1b49ea4ce8e579001dd8a7830820cc12da2a84ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pytest-lazy-fixture";
  version = "0.6.3";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1b0hmnsxw4s2wf9pks8dg6dfy5cx3zcbzs8517lfccxsfizhqz8f";
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Helps to use fixtures in pytest.mark.parametrize";
    homepage = "https://github.com/pytest-dev/pytest-repeat";
    license = licenses.mit;
    maintainers = with maintainers; [ tobim ];
  };
}