Merge pull request #268937 from r-ryantm/auto-update/python311Packages.picobox

python311Packages.picobox: 3.0.0 -> 4.0.0

authored by Florian Klink and committed by GitHub 90dfce28 8dd75c8f

+5 -6
+5 -6
pkgs/development/python-modules/picobox/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , flask 6 5 , hatchling 7 6 , hatch-vcs 8 - , isPy27 9 7 , pytestCheckHook 8 + , pythonOlder 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "picobox"; 14 - version = "3.0.0"; 13 + version = "4.0.0"; 15 14 16 - format = "pyproject"; 15 + pyproject = true; 17 16 18 - disabled = isPy27; 17 + disabled = pythonOlder "3.8"; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "ikalnytskyi"; 22 21 repo = pname; 23 22 rev = "refs/tags/${version}"; 24 - hash = "sha256-LQiSurL+eFRJ9iQheoo66o44BlfBtAatk8deuMFROcc="; 23 + hash = "sha256-JtrwUVo3b4G34OUShX4eJS2IVubl4vBmEtB/Jhk4eJI="; 25 24 }; 26 25 27 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;