python311Packages.picobox: refactor

This commit is contained in:
OTABI Tomoya 2023-12-03 16:31:36 +09:00 committed by GitHub
parent d1b3251d47
commit 1abaa4cea1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,20 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, flask
, hatchling
, hatch-vcs
, isPy27
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "picobox";
version = "4.0.0";
format = "pyproject";
pyproject = true;
disabled = isPy27;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ikalnytskyi";