about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2018-01-11 02:09:49 +0800
committerGitHub <noreply@github.com>2018-01-11 02:09:49 +0800
commit395cd19c9db7f1aabd293f625d5a46e594e33440 (patch)
tree035a5de23c63160eb47326356a93ee468e6107da /pkgs/development
parent80cb0c39de929f7e8e65d587cb22af777db98bea (diff)
parent7933fe4ee5508f69b20a40da3637c7b4098c0deb (diff)
downloadnixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.tar
nixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.tar.gz
nixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.tar.bz2
nixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.tar.lz
nixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.tar.xz
nixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.tar.zst
nixlib-395cd19c9db7f1aabd293f625d5a46e594e33440.zip
Merge pull request #33664 from kquick/thespian-3.9.1
python: thespian: 3.9.0 -> 3.9.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/thespian/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/thespian/default.nix b/pkgs/development/python-modules/thespian/default.nix
index df118470e920..1a2aced6858b 100644
--- a/pkgs/development/python-modules/thespian/default.nix
+++ b/pkgs/development/python-modules/thespian/default.nix
@@ -1,19 +1,19 @@
 { stdenv, fetchPypi, buildPythonPackage, lib }:
 
 buildPythonPackage rec {
-  version = "3.9.0";
+  version = "3.9.1";
   pname = "thespian";
   name = "${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "e698e3c5369d7b06de5c4ce7b877ea65991c99f7b0fabd09f29e91bc981c7d22";
+    sha256 = "0b303bv85176xd5mf3q5j549s28wi70ck2xxgj1cvpydh23dzipb";
   };
 
-  # Do not run the test suite: it takes a long type and uses
+  # Do not run the test suite: it takes a long time and uses
   # significant system resources, including requiring localhost
-  # network operations.  Thespian tests are performed via it's Travis
+  # network operations.  Thespian tests are performed via its Travis
   # CI configuration and do not need to be duplicated here.
   doCheck = false;