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

python3Packages.pipenv-poetry-migrate: 0.3.2 -> 0.4.0

authored by

Matthias Beyer and committed by
GitHub
7ef9e50a caf1c274

+3 -8
+3 -8
pkgs/development/python-modules/pipenv-poetry-migrate/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pipenv-poetry-migrate"; 14 - version = "0.3.2"; 14 + version = "0.4.0"; 15 15 format = "pyproject"; 16 16 17 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "yhino"; 21 21 repo = "pipenv-poetry-migrate"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-aPG0MgChnJbivJRjYx9aQE5OPhL4WlPyt5uKCHZUpeE="; 23 + hash = "sha256-QNp+KYOJIKV1fROmIhnWgDXFU8CymXkS2p90bOEPeoQ="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ ··· 32 32 tomlkit 33 33 typer 34 34 ]; 35 - 36 - postPatch = '' 37 - substituteInPlace pyproject.toml \ 38 - --replace 'typer = "^0.4.0"' 'typer = ">=0.4"' 39 - ''; 40 35 41 36 nativeCheckInputs = [ 42 37 pytestCheckHook