linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-fixture-config / default.nix
blob32392f8f14ce58d7d6e3aa6983a4a87fadac7e61
1 { lib, buildPythonPackage, fetchPypi
2 , setuptools-git, pytest }:
4 buildPythonPackage rec {
5   pname = "pytest-fixture-config";
6   version = "1.7.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1";
11   };
13   nativeBuildInputs = [ setuptools-git ];
15   buildInputs = [ pytest ];
17   doCheck = false;
19   meta = with lib; {
20     description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables aren’t set.";
21     homepage = "https://github.com/manahl/pytest-plugins";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ryansydnor ];
24   };