1 { lib, buildPythonPackage, fetchPypi
2 , setuptools-git, pytest }:
4 buildPythonPackage rec {
5 pname = "pytest-fixture-config";
10 inherit pname version;
11 sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1";
14 nativeBuildInputs = [ setuptools-git ];
16 buildInputs = [ pytest ];
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 ];