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

python311Packages.picobox: 3.0.0 -> 4.0.0
This commit is contained in:
Florian Klink 2023-12-04 15:29:24 +02:00 committed by GitHub
commit 90dfce2859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +1,26 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, flask
, hatchling
, hatch-vcs
, isPy27
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "picobox";
version = "3.0.0";
version = "4.0.0";
format = "pyproject";
pyproject = true;
disabled = isPy27;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ikalnytskyi";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-LQiSurL+eFRJ9iQheoo66o44BlfBtAatk8deuMFROcc=";
hash = "sha256-JtrwUVo3b4G34OUShX4eJS2IVubl4vBmEtB/Jhk4eJI=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;