about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorJohannes Bornhold <johannes@bornhold.name>2017-02-20 22:13:57 +0100
committerJohannes Bornhold <johannes@bornhold.name>2017-04-12 13:13:27 +0200
commita189f8cc0fb1d676c8e5de9b81c2b1feb189b726 (patch)
tree09d74ad2ea95fe2ab713014f90611814ce251be5 /pkgs/top-level
parent3c65b4ac9a727d22bdf1f49221ad738005a1113a (diff)
downloadnixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.tar
nixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.tar.gz
nixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.tar.bz2
nixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.tar.lz
nixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.tar.xz
nixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.tar.zst
nixlib-a189f8cc0fb1d676c8e5de9b81c2b1feb189b726.zip
pytest_xdist: 1.8 -> 1.14
Diffstat (limited to 'pkgs/top-level')
-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 1480113e46e9..75fcfd60f904 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5486,19 +5486,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;
     };
   };