Unverified Commit 2deceb46 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python312Packages.portion: 2.6.0 -> 2.6.1 (#411049)

parents aacfb6d4 a9a498c4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2,24 +2,24 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  hatchling,
  sortedcontainers,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "portion";
  version = "2.6.0";
  version = "2.6.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "AlexandreDecan";
    repo = "portion";
    tag = version;
    hash = "sha256-TBCnlkGZZ/3tWEojxDGNYcXtYHhrooJkaWBsRkadXEE=";
    hash = "sha256-K4mZn8Fm96ZBBdLTMfM9f1GKDdIrRwDRzk6ObaXSFG4=";
  };

  build-system = [ setuptools ];
  build-system = [ hatchling ];

  dependencies = [ sortedcontainers ];