pipenv-poetry-migrate: refactor

This commit is contained in:
natsukium
2025-01-14 18:37:38 +09:00
parent e55003d29d
commit 3c9048889a
@@ -7,7 +7,7 @@
python3Packages.buildPythonApplication rec {
pname = "pipenv-poetry-migrate";
version = "0.6.0";
format = "pyproject";
pyproject = true;
src = fetchFromGitHub {
owner = "yhino";
@@ -16,9 +16,9 @@ python3Packages.buildPythonApplication rec {
hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI=";
};
nativeBuildInputs = [ python3Packages.poetry-core ];
build-system = [ python3Packages.poetry-core ];
propagatedBuildInputs = with python3Packages; [
dependencies = with python3Packages; [
setuptools # for pkg_resources
tomlkit
typer
@@ -26,12 +26,12 @@ python3Packages.buildPythonApplication rec {
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
meta = with lib; {
meta = {
description = "This is simple migration script, migrate pipenv to poetry";
mainProgram = "pipenv-poetry-migrate";
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 ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ gador ];
};
}