Merge pull request #218023 from r-ryantm/auto-update/python310Packages.pipenv-poetry-migrate

python310Packages.pipenv-poetry-migrate: 0.3.1 -> 0.3.2
This commit is contained in:
Fabian Affolter
2023-02-25 09:19:11 +01:00
committed by GitHub
@@ -10,16 +10,17 @@
}:
buildPythonPackage rec {
version = "0.3.1";
pname = "pipenv-poetry-migrate";
version = "0.3.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "yhino";
repo = "pipenv-poetry-migrate";
rev = "refs/tags/v${version}";
hash = "sha256-HYzKp7ZYvJZX2CiHmR8wIeuL2a1xdk0Y87HLs9EP2tM=";
hash = "sha256-aPG0MgChnJbivJRjYx9aQE5OPhL4WlPyt5uKCHZUpeE=";
};
nativeBuildInputs = [
@@ -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 ];
};