summary refs log tree commit diff
path: root/pkgs/applications/misc/khal
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-06-29 18:57:30 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-06-29 19:28:18 +0200
commit12cf9f7edad3e110900de037f4aa8cb046ec9029 (patch)
treeb0d6295ecd7b9814ce4ad1c46bdf626a8d698f57 /pkgs/applications/misc/khal
parent38094de6b67701960c2383f60fbf37448473faf8 (diff)
downloadnixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.tar
nixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.tar.gz
nixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.tar.bz2
nixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.tar.lz
nixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.tar.xz
nixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.tar.zst
nixlib-12cf9f7edad3e110900de037f4aa8cb046ec9029.zip
khal: pin python-dateutil==2.6.1
Diffstat (limited to 'pkgs/applications/misc/khal')
-rw-r--r--pkgs/applications/misc/khal/default.nix25
1 files changed, 20 insertions, 5 deletions
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index 60f6deefb010..ede85aeada5a 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -1,8 +1,22 @@
-{ stdenv, pkgs, python3Packages }:
+{ stdenv, pkgs, python3 }:
 
-with python3Packages;
+let
+  python = python3.override {
+    packageOverrides = self: super: {
 
-buildPythonApplication rec {
+      # https://github.com/pimutils/khal/issues/780
+      python-dateutil = super.python-dateutil.overridePythonAttrs (oldAttrs: rec {
+        version = "2.6.1";
+        src = oldAttrs.src.override {
+          inherit version;
+          sha256 = "891c38b2a02f5bb1be3e4793866c8df49c7d19baabf9c1bad62547e0b4866aca";
+        };
+      });
+
+    };
+  };
+
+in with python.pkgs; buildPythonApplication rec {
   pname = "khal";
   version = "0.9.9";
 
@@ -29,10 +43,11 @@ buildPythonApplication rec {
     pkginfo
     freezegun
   ];
-  buildInputs = [ setuptools_scm pytest pkgs.glibcLocales ];
+  nativeBuildInputs = [ setuptools_scm pkgs.glibcLocales ];
+  checkInputs = [ pytest ];
 
   checkPhase = ''
-    # py.test
+    py.test
   '';
 
   meta = with stdenv.lib; {