From 2a8120251de9893299c666edb9f9cb2161a68c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 8 Jul 2018 10:44:21 +0200 Subject: [PATCH] papis: unpin python-dateutil --- pkgs/tools/misc/papis/default.nix | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/pkgs/tools/misc/papis/default.nix b/pkgs/tools/misc/papis/default.nix index 20fafff587c..0baae0b5ab9 100644 --- a/pkgs/tools/misc/papis/default.nix +++ b/pkgs/tools/misc/papis/default.nix @@ -3,20 +3,7 @@ }: let - python = python3.override { - packageOverrides = self: super: { - - # https://github.com/eventable/vobject/issues/112 - python-dateutil = super.python-dateutil.overridePythonAttrs (oldAttrs: rec { - version = "2.6.1"; - src = oldAttrs.src.override { - inherit version; - sha256 = "891c38b2a02f5bb1be3e4793866c8df49c7d19baabf9c1bad62547e0b4866aca"; - }; - }); - - }; - }; + python = python3; in python.pkgs.buildPythonApplication rec { pname = "papis";