summary refs log tree commit diff
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-08-04 23:35:41 +0200
committerGitHub <noreply@github.com>2018-08-04 23:35:41 +0200
commit8d184e14e48b874d7b10a41ce054fb6395bb9036 (patch)
treec5eda2e3b8ecc68a67271ed130dc7b790f6a7c14
parent31dda068dbfbe1cf0bf4635f77cf90783d142c05 (diff)
parentfb26b73f1108e852b225107728f5e36ac00f48ba (diff)
downloadnixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.tar
nixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.tar.gz
nixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.tar.bz2
nixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.tar.lz
nixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.tar.xz
nixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.tar.zst
nixlib-8d184e14e48b874d7b10a41ce054fb6395bb9036.zip
Merge pull request #44469 from nyarly/simp_le_090
simp_le: 0.8.0 -> 0.9.0
-rw-r--r--pkgs/tools/admin/simp_le/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix
index ca0e16c1185a..5ad73d1ce7a0 100644
--- a/pkgs/tools/admin/simp_le/default.nix
+++ b/pkgs/tools/admin/simp_le/default.nix
@@ -1,17 +1,19 @@
 { stdenv, pythonPackages, bash }:
- 
+
 pythonPackages.buildPythonApplication rec {
   pname = "simp_le-client";
-  version = "0.8.0";
+  version = "0.9.0";
 
   src = pythonPackages.fetchPypi {
     inherit pname version;
-    sha256 = "0nv9mm99rm8i9flgfgwvmajbsxb5rm162nfxlq3wk66bbbyr6y1i";
+    sha256 = "1yxfznd78zkg2f657v520zj5w4dvq5n594d0kpm4lra8xnpg4zcv";
   };
 
   postPatch = ''
     # drop upper bound of acme requirement
     sed -ri "s/'(acme>=[^,]+),<[^']+'/'\1'/" setup.py
+    # drop upper bound of idna requirement
+    sed -ri "s/'(idna)<[^']+'/'\1'/" setup.py
     substituteInPlace simp_le.py \
       --replace "/bin/sh" "${bash}/bin/sh"
   '';
@@ -20,14 +22,13 @@ pythonPackages.buildPythonApplication rec {
     $out/bin/simp_le --test
   '';
 
-  propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm josepy ];
+  propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm josepy idna ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/zenhack/simp_le;
     description = "Simple Let's Encrypt client";
     license = licenses.gpl3;
     maintainers = with maintainers; [ gebner makefu ];
-    platforms = platforms.all;
+    platforms = platforms.linux;
   };
 }
-