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