lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.certbot-dns-inwx: 2.2.0 -> 3.0.1

+11 -6
+11 -6
pkgs/development/python-modules/certbot-dns-inwx/default.nix
··· 1 1 { 2 2 lib, 3 - fetchPypi, 3 + fetchFromGitHub, 4 4 buildPythonPackage, 5 + setuptools, 5 6 acme, 6 7 certbot, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "certbot-dns-inwx"; 11 - version = "2.2.0"; 12 - format = "setuptools"; 12 + version = "3.0.1"; 13 + pyproject = true; 13 14 14 - src = fetchPypi { 15 - inherit pname version; 16 - hash = "sha256-v03QBHsxhl6R8YcwWIKD+pf4APy9S2vFcQe3ZEc6AjI="; 15 + src = fetchFromGitHub { 16 + owner = "oGGy990"; 17 + repo = "certbot-dns-inwx"; 18 + tag = "v${version}"; 19 + hash = "sha256-9dDSJcXlPq065CloaszwutUXsGn+Y9fIeTiGmiXGonY="; 17 20 }; 21 + 22 + build-system = [ setuptools ]; 18 23 19 24 propagatedBuildInputs = [ 20 25 acme