lol

python311Packages.segno: 1.5.2 -> 1.5.3

https://github.com/heuer/segno/releases/tag/1.5.3

+16 -3
+16 -3
pkgs/development/python-modules/segno/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + 5 + # build-system 6 + , setuptools 7 + 8 + # tests 4 9 , pytestCheckHook 5 10 , pypng 6 11 , pyzbar ··· 8 13 9 14 buildPythonPackage rec { 10 15 pname = "segno"; 11 - version = "1.5.2"; 16 + version = "1.5.3"; 17 + pyproject = true; 12 18 13 19 src = fetchFromGitHub { 14 20 owner = "heuer"; 15 21 repo = "segno"; 16 22 rev = version; 17 - hash = "sha256-+OEXG5OvrZ5Ft7IO/7zodf+SgiRF+frwjltrBENNnHo="; 23 + hash = "sha256-j7DUCeMoYziu19WfJu/9YiIMa2ysOPYfqW8AMcE5LaU="; 18 24 }; 19 25 26 + nativeBuildInputs = [ 27 + setuptools 28 + ]; 29 + 20 30 nativeCheckInputs = [ 21 31 pytestCheckHook 22 32 pypng 23 33 pyzbar 24 34 ]; 25 35 26 - pythonImportsCheck = [ "segno" ]; 36 + pythonImportsCheck = [ 37 + "segno" 38 + ]; 27 39 28 40 meta = with lib; { 41 + changelog = "https://github.com/heuer/segno/releases/tag/${version}"; 29 42 description = "QR Code and Micro QR Code encoder"; 30 43 homepage = "https://github.com/heuer/segno/"; 31 44 license = licenses.bsd3;