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:
parent
4525ce10b5
commit
0ff89e52a4
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
, cython_3
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, msgpack
|
, msgpack
|
||||||
, poetry-core
|
, poetry-core
|
||||||
|
@ -15,19 +16,20 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-box";
|
pname = "python-box";
|
||||||
version = "7.0.1";
|
version = "7.1.1";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cdgriffith";
|
owner = "cdgriffith";
|
||||||
repo = "Box";
|
repo = "Box";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-Ddt8/S6HzmOt1kvzRzed3+TbOacw6RG9nd2UNn+ELB4=";
|
hash = "sha256-oxT2y3um6BZ3bwYa+LWBoTgU+9b+V7XtQdCdECU3Gu0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
cython_3
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue