From 184cef18d9d4eaaa07107738d9974ef9a5104cb2 Mon Sep 17 00:00:00 2001 From: Fernando J Pando Date: Thu, 18 Aug 2016 10:11:24 -0400 Subject: [PATCH] pythonPackages.pytest-server-fixtures: init at 1.1.0 Tested on Linux Tested on Darwin --- pkgs/top-level/python-packages.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a34c01e991..fa84a89c58d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4747,6 +4747,30 @@ in modules // { }; }; + pytest-server-fixtures = buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "pytest-server-fixtures"; + version = "1.1.0"; + + propagatedBuildInputs = with self; [ setuptools-git pytest-shutil pytest-fixture-config psutil requests2 ]; + + meta = { + description = "Extensible server fixures for py.test"; + homepage = "https://github.com/manahl/pytest-plugins"; + license = licenses.mit; + maintainers = with maintainers; [ nand0p ]; + platforms = platforms.all; + }; + + doCheck = false; + # RuntimeError: Unable to find a free server number to start Xvfb + + src = pkgs.fetchurl { + url = "mirror://pypi/p/${pname}/${name}.tar.gz"; + sha256 = "1gs9qimcn8q6xi9d6i5624l0dziwvn6nj2rda07fg15g1cq66s8l"; + }; + }; + pytestcov = buildPythonPackage (rec { name = "pytest-cov-2.2.0";