summary refs log tree commit diff
path: root/pkgs/applications/misc/weather
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-09-10 11:01:02 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-09-10 11:01:49 +0200
commit67871eed1d2b4bfc7d281be107ed47c6a2814ce8 (patch)
treeb0ce8d8988f717813811b51f7f502499cef187a4 /pkgs/applications/misc/weather
parent5e3ec7ea1e760ba52c30ea8da5bf0bd8b61d308b (diff)
downloadnixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.tar
nixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.tar.gz
nixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.tar.bz2
nixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.tar.lz
nixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.tar.xz
nixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.tar.zst
nixpkgs-67871eed1d2b4bfc7d281be107ed47c6a2814ce8.zip
weather: 2.4 -> 2.4.1
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'pkgs/applications/misc/weather')
-rw-r--r--pkgs/applications/misc/weather/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/weather/default.nix b/pkgs/applications/misc/weather/default.nix
index a41a080771f..f44b5f1f56a 100644
--- a/pkgs/applications/misc/weather/default.nix
+++ b/pkgs/applications/misc/weather/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, pythonPackages }:
 
 stdenv.mkDerivation rec {
-    version = "2.4";
+    version = "2.4.1";
     pname = "weather";
 
     src = fetchurl {
         url = "http://fungi.yuggoth.org/weather/src/${pname}-${version}.tar.xz";
-        sha256 = "084f0am0s1h6y71wgja9acaaxp0mq6k74b6ad4b5wpk2znwv0rzz";
+        sha256 = "0nf680dl7a2vlgavdhj6ljq8a7lkhvr6zghkpzad53vmilxsndys";
     };
 
     nativeBuildInputs = [ pythonPackages.wrapPython ];