summary refs log tree commit diff
path: root/pkgs/development/python-modules/twill
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-05-27 14:24:47 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-05-27 14:25:08 +0200
commit6b999f3c42607342231b6fe119fcf0f934f40fd8 (patch)
treeaff659b5d13c322236b7b46154450864f5061520 /pkgs/development/python-modules/twill
parent4cbd5e4141422b835a86bb1b5e2d004a3c9a3a3e (diff)
downloadnixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar
nixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.gz
nixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.bz2
nixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.lz
nixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.xz
nixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.tar.zst
nixpkgs-6b999f3c42607342231b6fe119fcf0f934f40fd8.zip
Python: many package updates
Did not test all packages. Likely we'll have some breakage.
Diffstat (limited to 'pkgs/development/python-modules/twill')
-rw-r--r--pkgs/development/python-modules/twill/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/twill/default.nix b/pkgs/development/python-modules/twill/default.nix
index 37828752ffe..8f0fbbd6dfb 100644
--- a/pkgs/development/python-modules/twill/default.nix
+++ b/pkgs/development/python-modules/twill/default.nix
@@ -1,14 +1,14 @@
 { stdenv, buildPythonPackage, fetchurl, isPy3k, pythonPackages }:
 buildPythonPackage rec {
   pname = "twill";
-  version = "0.9.1";
+  version = "1.8.0";
   name = "${pname}-${version}";
 
   disabled = isPy3k;
 
   src = fetchurl {
     url    = "mirror://pypi/t/twill/${name}.tar.gz";
-    sha256 = "0zmssp41cgb5sz1jym7rxy6mamb64dxq3wra1bn6snna9v653pyj";
+    sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188";
   };
 
   propagatedBuildInputs = with pythonPackages; [ nose ];