Unverified Commit a37b4688 authored by Florian Brandes's avatar Florian Brandes
Browse files

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

parent 59355d12
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -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
  ];