about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-fixture-config
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-04-01 14:04:29 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-04 19:46:00 +0200
commitf648930a0b3ad1afe9242fa1b342c6991d6c6367 (patch)
tree0b3b40a3bcf5030d222676a13cc8014d38370d44 /pkgs/development/python-modules/pytest-fixture-config
parente0b97819b7b6351ccd269c390f39a6f58fe86a45 (diff)
downloadnixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.tar
nixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.tar.gz
nixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.tar.bz2
nixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.tar.lz
nixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.tar.xz
nixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.tar.zst
nixlib-f648930a0b3ad1afe9242fa1b342c6991d6c6367.zip
pythonPackages.pytest-fixture-config: Move to own file
Diffstat (limited to 'pkgs/development/python-modules/pytest-fixture-config')
-rw-r--r--pkgs/development/python-modules/pytest-fixture-config/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix
new file mode 100644
index 000000000000..db2e1768afa7
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, pytest, coverage, virtualenv, pytestcov, six }:
+
+buildPythonPackage rec {
+  pname = "pytest-fixture-config";
+  version = "1.0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1dpdf36hpkfhgmca4rwmf0vnzz7xqbiw479v11zp12pq4p5w2z3x";
+  };
+
+  buildInputs = [ pytest ];
+  propagatedBuildInputs = [ coverage virtualenv pytestcov six ];
+
+  checkPhase = ''
+    py.test -k "not test_yield_requires_config_doesnt_skip and not test_yield_requires_config_skips"
+  '';
+
+  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 ];
+  };
+}