Commit a9a498c4 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent c596c2f0
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 ];