Unverified Commit 862fc0e4 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python312Packages.hakuin: 0-unstable-2024-03-31 -> 0.1.10 (#352195)

parents 0c7e443a 56c0be01
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -3,24 +3,27 @@
  aiohttp,
  buildPythonPackage,
  fetchFromGitHub,
  hatchling,
  jinja2,
  nltk,
  setuptools,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "hakuin";
  version = "0-unstable-2024-03-31";
  version = "0.1.10";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "pruzko";
    repo = "hakuin";
    rev = "3b7b76dcbfb8ab2b98e6dee08df02158327af772";
    hash = "sha256-tRjo9a0ZCBjKxbXTkiKFzfL4pL5awF5vXmsJlYxwoIw=";
    rev = "refs/tags/${version}";
    hash = "sha256-l5YnGRPUZUQqOaRvQd4l4eowWGpuPBignjkDDT9q7fg=";
  };

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

  dependencies = [
    aiohttp