Unverified Commit 0b36f7bd authored by nicoo's avatar nicoo Committed by GitHub
Browse files

Merge #415575: memtree 0-unstable-2025-06-06 → 0-unstable-2025-06-10

Additional changes to `memtree`
* bring up to current Python packaging conventions
* update `src` after account rename
* prune `src`
parents 6ae90ba3 4e15e5ba
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -7,23 +7,24 @@

python3Packages.buildPythonApplication {
  pname = "memtree";
  version = "0-unstable-2025-06-06";
  version = "0-unstable-2025-06-10";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nbraud";
    owner = "nicoonoclaste";
    repo = "memtree";
    rev = "279f1fa0a811de86c278ce74830bd8aa1b00db58";
    hash = "sha256-gUULox3QSx68x8lb1ytanY36cw/I9L4HdpR8OPOsxuc=";
  };
    rev = "ad1a7d1e4fa5f195c2aa1012101d01ab580a05e8";
    hash = "sha256-stIRBXhaLqYsN2WMQnu46z39ssantzM8M6T3kCOoZKc=";

  pythonRelaxDeps = [ "rich" ];
    # Remove irrelevant content, avoid src hash change on flake.lock updates etc.
    postFetch = "rm -r $out/.* $out/flake.* $out/bors.toml";
  };

  nativeBuildInputs = with python3Packages; [
  build-system = with python3Packages; [
    poetry-core
  ];

  propagatedBuildInputs = with python3Packages; [
  dependencies = with python3Packages; [
    rich
  ];