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