Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pytest-fixture-config / default.nix
blob31ab985dbff2d691d6e63dceab1994a97e89f7ce
1 { lib, buildPythonPackage, fetchPypi
2 , setuptools-git, pytest }:
4 buildPythonPackage rec {
5   pname = "pytest-fixture-config";
6   version = "1.7.0";
7   format = "setuptools";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1";
12   };
14   nativeBuildInputs = [ setuptools-git ];
16   buildInputs = [ pytest ];
18   doCheck = false;
20   meta = with lib; {
21     description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables aren’t set.";
22     homepage = "https://github.com/manahl/pytest-plugins";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ryansydnor ];
25   };