lol

python311Packages.signify: 0.5.2 -> 0.6.0

Diff: https://github.com/ralphje/signify/compare/refs/tags/v0.5.2...v0.6.0

Changelog: https://github.com/ralphje/signify/blob/refs/tags/v0.6.0/docs/changelog.rst

+5 -12
+5 -12
pkgs/development/python-modules/signify/default.nix
··· 3 3 , buildPythonPackage 4 4 , certvalidator 5 5 , fetchFromGitHub 6 - , fetchpatch2 7 6 , mscerts 8 7 , oscrypto 9 8 , pyasn1 ··· 11 10 , pytestCheckHook 12 11 , pythonOlder 13 12 , setuptools 13 + , typing-extensions 14 14 }: 15 15 16 16 buildPythonPackage rec { 17 17 pname = "signify"; 18 - version = "0.5.2"; 18 + version = "0.6.0"; 19 19 pyproject = true; 20 20 21 - disabled = pythonOlder "3.6"; 21 + disabled = pythonOlder "3.8"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "ralphje"; 25 25 repo = "signify"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-+UhZF+QYuv8pq/sTu7GDPUrlPNNixFgVZL+L0ulj/ko="; 27 + hash = "sha256-29SyzqtZ1cI+1xrSPLFr63vwB5st/9i5b3FYtJn6eok="; 28 28 }; 29 29 30 - patches = [ 31 - # https://github.com/ralphje/signify/pull/42 32 - (fetchpatch2 { 33 - url = "https://github.com/ralphje/signify/commit/38cad57bf86f7498259b47bfef1354aec27c0955.patch"; 34 - hash = "sha256-dLmHSlj2Cj6jbbrZStgK2Rh/H5vOaIbi5lut5RAbd+s="; 35 - }) 36 - ]; 37 - 38 30 nativeBuildInputs = [ 39 31 setuptools 40 32 ]; ··· 46 38 oscrypto 47 39 pyasn1 48 40 pyasn1-modules 41 + typing-extensions 49 42 ]; 50 43 51 44 pythonImportsCheck = [