2018-04-01 13:04:29 +01:00
|
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-06-01 23:36:40 +01:00
|
|
|
|
, setuptools-git, pytest }:
|
2018-04-01 13:04:29 +01:00
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pytest-fixture-config";
|
2019-06-01 23:36:40 +01:00
|
|
|
|
version = "1.7.0";
|
2018-04-01 13:04:29 +01:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2019-06-01 23:36:40 +01:00
|
|
|
|
sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1";
|
2018-04-01 13:04:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-04-07 13:51:26 +01:00
|
|
|
|
nativeBuildInputs = [ setuptools-git ];
|
|
|
|
|
|
2019-06-01 23:36:40 +01:00
|
|
|
|
buildInputs = [ pytest ];
|
2018-04-07 13:51:26 +01:00
|
|
|
|
|
2018-09-05 00:02:06 +01:00
|
|
|
|
doCheck = false;
|
2018-04-01 13:04:29 +01:00
|
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
};
|
|
|
|
|
}
|