summary refs log tree commit diff
path: root/pkgs/tools/admin/simp_le
diff options
context:
space:
mode:
authorTristan Helmich <tristan.helmich@gmail.com>2016-12-12 16:19:19 +0100
committerTristan Helmich <tristan.helmich@gmail.com>2016-12-12 16:26:28 +0100
commitc8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf (patch)
tree0810f7159b5ad4abe17f4ec1035b528fa0de3d1d /pkgs/tools/admin/simp_le
parent09fecd18b2ebf7d309478b90965110b1f02f4650 (diff)
downloadnixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.tar
nixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.tar.gz
nixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.tar.bz2
nixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.tar.lz
nixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.tar.xz
nixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.tar.zst
nixpkgs-c8c6ff4a96f1216fdb9c1fae6002b12d1b8deacf.zip
simp_le: bump acme dependency to newer version
acme_0_5_0 is no longer working and removed in another commit
Diffstat (limited to 'pkgs/tools/admin/simp_le')
-rw-r--r--pkgs/tools/admin/simp_le/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix
index 24bfe043b9d..b4ed398541f 100644
--- a/pkgs/tools/admin/simp_le/default.nix
+++ b/pkgs/tools/admin/simp_le/default.nix
@@ -15,9 +15,13 @@ pythonPackages.buildPythonApplication rec {
       url = "https://github.com/kuba/simp_le/commit/4bc788fdd611c4118c3f86b5f546779723aca5a7.patch";
       sha256 = "0036p11qn3plydv5s5z6i28r6ihy1ipjl0y8la0izpkiq273byfc";
     })
+    (fetchpatch {
+      url = "https://github.com/kuba/simp_le/commit/9ec7efe593cadb46348dc6924c1e6a31f0f9e636.patch";
+      sha256 = "0n3m94n14y9c42185ly47d061g6awc8vb8xs9abffaigxv59k06j";
+    })
   ];
 
-  propagatedBuildInputs = with pythonPackages; [ acme_0_5_0 ];
+  propagatedBuildInputs = with pythonPackages; [ acme ];
 
   meta = with stdenv.lib; {
     inherit (src.meta) homepage;