about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohannes Bornhold <johannes@bornhold.name>2017-02-20 22:13:57 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-05-10 14:52:51 +0200
commit0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d (patch)
treeda12e674fcd9ad0425d6d5745b8a09c775fc1de5
parente6f50214ed77aaad286731b66f17fb3f0b305e7c (diff)
downloadnixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.tar
nixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.tar.gz
nixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.tar.bz2
nixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.tar.lz
nixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.tar.xz
nixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.tar.zst
nixlib-0afb6d789c8bf74825e8cdf6a5d3b9ab8bde4f2d.zip
pytest_xdist: 1.8 -> 1.14
-rw-r--r--pkgs/top-level/python-packages.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 66358bceaf11..5dff6de52c39 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5294,19 +5294,20 @@ in {
   };
 
   pytest_xdist = buildPythonPackage rec {
-    name = "pytest-xdist-1.8";
+    name = "pytest-xdist-1.14";
 
     src = pkgs.fetchurl {
-      url = "mirror://pypi/p/pytest-xdist/pytest-xdist-1.8.zip";
-      sha256 = "b02135db7080c0978b7ce5d8f43a5879231441c2062a4791bc42b6f98c94fa69";
+      url = "mirror://pypi/p/pytest-xdist/${name}.zip";
+      sha256 = "08rn2l39ds60xshs4js787l84pfckksqklfq2wq9x8ig2aci2pja";
     };
 
-    buildInputs = with self; [ pytest ];
+    buildInputs = with self; [ pytest setuptools_scm ];
     propagatedBuildInputs = with self; [ execnet ];
 
     meta = {
       description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
-      homepage = http://bitbucket.org/hpk42/pytest-xdist;
+      homepage = https://github.com/pytest-dev/pytest-xdist;
+      license = licenses.mit;
     };
   };