python310Packages.pipenv-poetry-migrate: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-02-25 00:01:18 +01:00
committed by GitHub
parent 0793c311f6
commit 744bc24e55
@@ -10,9 +10,10 @@
}:
buildPythonPackage rec {
version = "0.3.2";
pname = "pipenv-poetry-migrate";
version = "0.3.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
@@ -33,7 +34,8 @@ buildPythonPackage rec {
];
postPatch = ''
substituteInPlace pyproject.toml --replace 'typer = "^0.4.0"' 'typer = ">=0.4"'
substituteInPlace pyproject.toml \
--replace 'typer = "^0.4.0"' 'typer = ">=0.4"'
'';
nativeCheckInputs = [
@@ -43,6 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "This is simple migration script, migrate pipenv to poetry";
homepage = "https://github.com/yhino/pipenv-poetry-migrate";
changelog = "https://github.com/yhino/pipenv-poetry-migrate/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ gador ];
};