Commit 0ff89e52 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

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
parent 4525ce10
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
{ 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
  ];