From dcd21c775ff5bba36bb956e9614a67c288e92455 Mon Sep 17 00:00:00 2001 From: Fernando J Pando Date: Mon, 29 Aug 2016 12:55:55 -0400 Subject: [PATCH] pythonPackages.pytest-shutil: init at 1.1.1 Tested on Linux --- pkgs/top-level/python-packages.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fa84a89c58dd..046480251d3f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4771,6 +4771,31 @@ in modules // { }; }; + pytest-shutil = buildPythonPackage rec { + name = "pytest-shutil-${version}"; + version = "1.1.1"; + src = pkgs.fetchurl { + url = "mirror://pypi/p/pytest-shutil/${name}.tar.gz"; + sha256 = "bb3c4fc2dddaf70b38bd9bb7a710d07728fa14f88fbc89c2a07979b383ade5d4"; + }; + buildInputs = with self; [ cmdline ]; + propagatedBuildInputs = with self; [ pytest pytestcov coverage setuptools-git mock pathpy execnet contextlib2 ]; + meta = { + description = "A goodie-bag of unix shell and environment tools for py.test"; + homepage = https://github.com/manahl/pytest-plugins; + maintainers = with maintainers; [ ryansydnor ]; + platforms = platforms.all; + license = licenses.mit; + }; + + + checkPhase = '' + py.test + ''; + # Bunch of pickle errors + doCheck = false; + }; + pytestcov = buildPythonPackage (rec { name = "pytest-cov-2.2.0";