python311Packages.python-box: 7.0.1 -> 7.1.1

Diff: cdgriffith/Box@refs/tags/7.0.1...7.1.1

Changelog: https://github.com/cdgriffith/Box/blob/7.1.1/CHANGES.rst
This commit is contained in:
Fabian Affolter 2023-08-29 16:46:48 +02:00
parent 4525ce10b5
commit 0ff89e52a4

View file

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, cython_3
, fetchFromGitHub
, msgpack
, poetry-core
@ -15,19 +16,20 @@
buildPythonPackage rec {
pname = "python-box";
version = "7.0.1";
version = "7.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "cdgriffith";
repo = "Box";
rev = "refs/tags/${version}";
hash = "sha256-Ddt8/S6HzmOt1kvzRzed3+TbOacw6RG9nd2UNn+ELB4=";
hash = "sha256-oxT2y3um6BZ3bwYa+LWBoTgU+9b+V7XtQdCdECU3Gu0=";
};
nativeBuildInputs = [
cython_3
setuptools
];