python312Packages.acme-tiny: 5.0.1 -> 5.0.2 (#420908)

authored by

Gaétan Lepage and committed by
GitHub
89480606 d1be3afb

+6 -7
+6 -7
pkgs/development/python-modules/acme-tiny/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "acme-tiny"; 14 - version = "5.0.1"; 15 pyproject = true; 16 17 src = fetchPypi { 18 - inherit pname version; 19 - sha256 = "378549808eece574c3b5dcea82b216534949423d5c7ac241d9419212d676bc8d"; 20 }; 21 22 patchPhase = '' ··· 35 fuse 36 ]; 37 38 - doCheck = false; # seems to hang, not sure 39 - 40 pythonImportsCheck = [ "acme_tiny" ]; 41 42 - meta = with lib; { 43 description = "Tiny script to issue and renew TLS certs from Let's Encrypt"; 44 mainProgram = "acme-tiny"; 45 homepage = "https://github.com/diafygi/acme-tiny"; 46 - license = licenses.mit; 47 }; 48 }
··· 11 12 buildPythonPackage rec { 13 pname = "acme-tiny"; 14 + version = "5.0.2"; 15 pyproject = true; 16 17 src = fetchPypi { 18 + pname = "acme_tiny"; 19 + inherit version; 20 + hash = "sha256-s84ZVYPcLxOnxvqQBS+Ks0myMtvCZ62cv0co6u2E3dg="; 21 }; 22 23 patchPhase = '' ··· 36 fuse 37 ]; 38 39 pythonImportsCheck = [ "acme_tiny" ]; 40 41 + meta = { 42 description = "Tiny script to issue and renew TLS certs from Let's Encrypt"; 43 mainProgram = "acme-tiny"; 44 homepage = "https://github.com/diafygi/acme-tiny"; 45 + license = lib.licenses.mit; 46 }; 47 }