Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 38 lines 697 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 acme, 6 certbot, 7}: 8 9buildPythonPackage rec { 10 pname = "certbot-dns-inwx"; 11 version = "2.2.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-v03QBHsxhl6R8YcwWIKD+pf4APy9S2vFcQe3ZEc6AjI="; 17 }; 18 19 propagatedBuildInputs = [ 20 acme 21 certbot 22 ]; 23 24 # Doesn't have any tests 25 doCheck = false; 26 27 pytestImportsCheck = [ "certbot_dns_inwx" ]; 28 29 meta = with lib; { 30 description = "INWX DNS Authenticator plugin for Certbot"; 31 homepage = "https://github.com/oGGy990/certbot-dns-inwx"; 32 license = with licenses; [ 33 asl20 34 mit 35 ]; 36 maintainers = with maintainers; [ onny ]; 37 }; 38}