Merge pull request #252101 from gador/pipenv-poetry-migrate-0-4-0

python3Packages.pipenv-poetry-migrate: 0.3.2 -> 0.4.0
This commit is contained in:
Matthias Beyer 2023-08-29 11:43:42 +02:00 committed by GitHub
commit 7ef9e50a99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,16 +11,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pipenv-poetry-migrate"; pname = "pipenv-poetry-migrate";
version = "0.3.2"; version = "0.4.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "yhino"; owner = "yhino";
repo = "pipenv-poetry-migrate"; repo = "pipenv-poetry-migrate";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-aPG0MgChnJbivJRjYx9aQE5OPhL4WlPyt5uKCHZUpeE="; hash = "sha256-QNp+KYOJIKV1fROmIhnWgDXFU8CymXkS2p90bOEPeoQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -33,11 +33,6 @@ buildPythonPackage rec {
typer typer
]; ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'typer = "^0.4.0"' 'typer = ">=0.4"'
'';
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
]; ];