Commit 1ade9cd4 authored by Robert Schütz's avatar Robert Schütz
Browse files

poetryPlugins.poetry-plugin-export: 1.9.0 -> 1.9.0-unstable-2025-09-14

parent dce979e4
Loading
Loading
Loading
Loading
+6 −19
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  poetry,
  poetry-core,
  pytest-mock,
@@ -12,28 +11,16 @@

buildPythonPackage rec {
  pname = "poetry-plugin-export";
  version = "1.9.0";
  format = "pyproject";
  version = "1.9.0-unstable-2025-09-14";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "python-poetry";
    repo = "poetry-plugin-export";
    tag = version;
    hash = "sha256-AP3/njzbLEi2s4pOUSLLLzqNprvxwLe9LSY7qh08EWc=";
    rev = "70a2f386a52687adee7353b51e59dd45aa319ee7";
    hash = "sha256-KsvkM4hjG+jrdPVauXYdc6E87Gp7srMg/mJHpWRjaEs=";
  };

  patches = [
    # Remove after next release of poetry-plugin-export
    (fetchpatch {
      url = "https://github.com/python-poetry/poetry-plugin-export/commit/16637f194e86708913ec6e09064c713eb0715bb6.patch";
      includes = [
        "tests/test_exporter.py"
        "tests/markers.py"
      ];
      hash = "sha256-ncz9kqp18+yeRXlhmLEcWfO1bDavjohhmVw6DwTy1hA=";
    })
  ];

  build-system = [
    poetry-core
  ];
@@ -48,10 +35,10 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  meta = with lib; {
  meta = {
    changelog = "https://github.com/python-poetry/poetry-plugin-export/blob/${src.rev}/CHANGELOG.md";
    description = "Poetry plugin to export the dependencies to various formats";
    license = licenses.mit;
    license = lib.licenses.mit;
    homepage = "https://github.com/python-poetry/poetry-plugin-export";
    maintainers = [ ];
  };