about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-fixture-config/default.nix
blob: e9ae311d496cf494f2589b6688e46a489614b92d (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_3 }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "839d70343c87d6dda5bca88e3ab06e7b2027998dc1ec452c14d50be5725180a3";
  };

  nativeBuildInputs = [ setuptools-git ];

  buildInputs = [ pytest_3 ];

  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 ];
  };
}