summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-fixture-config/default.nix
blob: 7fc3d4e951fb0838e38c66c533b3fef124f2510b (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
{ stdenv, buildPythonPackage, fetchPypi
, setuptools-git, pytest }:

buildPythonPackage rec {
  pname = "pytest-fixture-config";
  version = "1.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1";
  };

  nativeBuildInputs = [ setuptools-git ];

  buildInputs = [ pytest ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables aren’t set.";
    homepage = https://github.com/manahl/pytest-plugins;
    license = licenses.mit;
    maintainers = with maintainers; [ ryansydnor ];
  };
}