summary refs log tree commit diff
diff options
context:
space:
mode:
authorFernando J Pando <fernando.pando@stelligent.com>2016-08-18 10:22:58 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2016-08-30 12:06:18 +0200
commit4b820b842b612081c67977e7dad7776d46c29c30 (patch)
treee98bdb7ca3ce5a13328265be310fc562cdf87b05
parentdcd21c775ff5bba36bb956e9614a67c288e92455 (diff)
downloadnixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.tar
nixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.tar.gz
nixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.tar.bz2
nixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.tar.lz
nixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.tar.xz
nixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.tar.zst
nixpkgs-4b820b842b612081c67977e7dad7776d46c29c30.zip
pythonPackages.pytest-fixture-config: init at 1.0.1
Tested on Linux
Tested on Darwin
-rw-r--r--pkgs/top-level/python-packages.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 046480251d3..777d3f223b3 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -4612,6 +4612,31 @@ in modules // {
     };
   };
 
+  pytest-fixture-config = buildPythonPackage rec {
+    name = "${pname}-${version}";
+    pname = "pytest-fixture-config";
+    version = "1.0.1";
+
+    src = pkgs.fetchurl {
+      url = "mirror://pypi/p/${pname}/${name}.tar.gz";
+      sha256 = "7d7cc1cb25f88a707f083b1dc2e3c2fdfc6f37709567a2587dd0cd0bcd70edb6";
+    };
+
+    propagatedBuildInputs = with self; [ pytest coverage virtualenv pytestcov six ];
+
+    checkPhase = ''
+      py.test -k "not test_yield_requires_config_doesnt_skip and not test_yield_requires_config_skips"
+    '';
+
+    meta = {
+      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 ];
+      platforms   = platforms.all;
+    };
+  };
+
   pytestflakes = buildPythonPackage rec {
     name = "pytest-flakes-${version}";
     version = "1.0.0";