pipenv-poetry-migrate: 0.6.1 -> 0.6.2

This commit is contained in:
R. Ryantm 2025-03-02 16:27:50 +00:00
parent 48848c773b
commit fb76f8ba30

View file

@ -6,14 +6,14 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "pipenv-poetry-migrate"; pname = "pipenv-poetry-migrate";
version = "0.6.1"; version = "0.6.2";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "yhino"; owner = "yhino";
repo = "pipenv-poetry-migrate"; repo = "pipenv-poetry-migrate";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-B13/QHHruZGkks1AKHLUw8h5FJkqaVjPHjiKH8vkV/8="; hash = "sha256-kx03w02XUEMoPA8KKvyBGS81IHP3KFjKCVhAoyQ9j+I=";
}; };
build-system = [ python3Packages.poetry-core ]; build-system = [ python3Packages.poetry-core ];
@ -30,7 +30,7 @@ python3Packages.buildPythonApplication rec {
description = "This is simple migration script, migrate pipenv to poetry"; description = "This is simple migration script, migrate pipenv to poetry";
mainProgram = "pipenv-poetry-migrate"; mainProgram = "pipenv-poetry-migrate";
homepage = "https://github.com/yhino/pipenv-poetry-migrate"; homepage = "https://github.com/yhino/pipenv-poetry-migrate";
changelog = "https://github.com/yhino/pipenv-poetry-migrate/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/yhino/pipenv-poetry-migrate/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20; license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ gador ]; maintainers = with lib.maintainers; [ gador ];
}; };