python312Packages.python-box: 7.2.0 -> 7.3.0 (#365431)

This commit is contained in:
Nick Cao
2024-12-17 20:26:32 -05:00
committed by GitHub

View File

@@ -16,19 +16,19 @@
buildPythonPackage rec {
pname = "python-box";
version = "7.2.0";
format = "setuptools";
version = "7.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "cdgriffith";
repo = "Box";
rev = "refs/tags/${version}";
hash = "sha256-5aORpuh0ezA3mUEpAPANDkdeN8ujNRfCUCV5qamMk68=";
tag = version;
hash = "sha256-0vUPXZEyolI03N5RQ5GKTvSHUuFpimHZwQAYwGHJydU=";
};
nativeBuildInputs = [
build-system = [
cython
setuptools
];