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