summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytestrunner
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-12-19 20:31:20 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-12-30 16:46:46 +0100
commit4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55 (patch)
treea75e817b2f1bc271e3586ce8ab8d9474499e51eb /pkgs/development/python-modules/pytestrunner
parentf286d1dacacdb120ffd380f022f26b15cfacd106 (diff)
downloadnixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.tar
nixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.tar.gz
nixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.tar.bz2
nixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.tar.lz
nixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.tar.xz
nixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.tar.zst
nixpkgs-4dde0368714acf4e7b3a5182a2f4c2d3d69a9b55.zip
python: pytest-runner: 5.1 -> 5.2
Diffstat (limited to 'pkgs/development/python-modules/pytestrunner')
-rw-r--r--pkgs/development/python-modules/pytestrunner/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytestrunner/default.nix b/pkgs/development/python-modules/pytestrunner/default.nix
index ebe1c588faa..fa937e9626c 100644
--- a/pkgs/development/python-modules/pytestrunner/default.nix
+++ b/pkgs/development/python-modules/pytestrunner/default.nix
@@ -2,11 +2,11 @@
 
 buildPythonPackage rec {
   pname = "pytest-runner";
-  version = "5.1";
+  version = "5.2";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "25a013c8d84f0ca60bb01bd11913a3bcab420f601f0f236de4423074af656e7a";
+    sha256 = "96c7e73ead7b93e388c5d614770d2bae6526efd997757d3543fe17b557a0942b";
   };
 
   nativeBuildInputs = [ setuptools_scm pytest ];