summary refs log tree commit diff
path: root/pkgs/applications/misc/weather
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-07-07 19:56:54 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-07-07 19:56:54 +0000
commitdc378c1cead5952ef1973d067d70176a76b44b2a (patch)
treedd87f12f206bd4e922d9113ff7916e691cf6962b /pkgs/applications/misc/weather
parent6eeb612a9b6160df2e110021d93bef3e6e538b9a (diff)
downloadnixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.tar
nixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.tar.gz
nixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.tar.bz2
nixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.tar.lz
nixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.tar.xz
nixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.tar.zst
nixpkgs-dc378c1cead5952ef1973d067d70176a76b44b2a.zip
weather: 2.3 -> 2.4
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 ce4fae1cb22..9b6289d7082 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.3";
+    version = "2.4";
     pname = "weather";
 
     src = fetchurl {
         url = "http://fungi.yuggoth.org/weather/src/${pname}-${version}.tar.xz";
-        sha256 = "0inij30prqqcmzjwcmfzjjn0ya5klv18qmajgxipz1jr3lpqs546";
+        sha256 = "084f0am0s1h6y71wgja9acaaxp0mq6k74b6ad4b5wpk2znwv0rzz";
     };
 
     nativeBuildInputs = [ pythonPackages.wrapPython ];