X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=pkgs%2Fsimp_le%2Fdefault.nix;fp=pkgs%2Fsimp_le%2Fdefault.nix;h=0000000000000000000000000000000000000000;hb=2bcc666fd591dbf7543fc550ff1772508695a746;hp=eaefba3654503bc00a47dcf03f4472c2299606d1;hpb=27794e1507ab5bd4b0f31278cf8049854790e4a7;p=perso%2FImmae%2FConfig%2FNix%2FNUR.git diff --git a/pkgs/simp_le/default.nix b/pkgs/simp_le/default.nix deleted file mode 100644 index eaefba36..00000000 --- a/pkgs/simp_le/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, python3Packages, bash }: - -python3Packages.buildPythonApplication rec { - pname = "simp_le-client"; - version = "0.17.0"; - - src = python3Packages.fetchPypi { - inherit pname version; - sha256 = "0m1jynar4calaffp2zdxr5yy9vnhw2qf2hsfxwzfwf8fqb5h7bjb"; - }; - - postPatch = '' - # drop upper bound of idna requirement - sed -ri "s/'(idna)<[^']+'/'\1'/" setup.py - substituteInPlace simp_le.py \ - --replace "/bin/sh" "${bash}/bin/sh" - ''; - - checkPhase = '' - $out/bin/simp_le --test - ''; - - propagatedBuildInputs = with python3Packages; [ 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.linux; - }; -}