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

Diff: https://github.com/python-poetry/poetry-plugin-export/compare/1.9.0...70a2f386a52687adee7353b51e59dd45aa319ee7
This commit is contained in:
Robert Schütz
2025-09-20 07:13:10 -07:00
parent dce979e488
commit 1ade9cd438
@@ -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 = [ ];
};