simp_le: 0.6.2 -> 0.8.0

This commit is contained in:
makefu 2018-03-20 22:26:30 +01:00
parent e9f176a09a
commit e144fa07b9
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -1,26 +1,26 @@
{ stdenv, fetchFromGitHub, fetchpatch, pythonPackages }: { stdenv, fetchFromGitHub, fetchpatch, pythonPackages }:
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "simp_le-client"; pname = "simp_le-client";
version = "0.6.1"; version = "0.8.0";
name = "${pname}-${version}";
src = pythonPackages.fetchPypi { src = pythonPackages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0x4fky9jizs3xi55cdy217cvm3ikpghiabysan71b07ackkdfj6k"; sha256 = "0nv9mm99rm8i9flgfgwvmajbsxb5rm162nfxlq3wk66bbbyr6y1i";
}; };
checkPhase = '' checkPhase = ''
$out/bin/simp_le --test $out/bin/simp_le --test
''; '';
propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm ]; propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm josepy ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/zenhack/simp_le; homepage = https://github.com/zenhack/simp_le;
description = "Simple Let's Encrypt client"; description = "Simple Let's Encrypt client";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ gebner ]; maintainers = with maintainers; [ gebner makefu ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }