Commit 60acdc42 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 60df26f7
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -6,21 +6,18 @@
  poetry-core,
  prompt-toolkit,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "questionary";
  version = "2.1.0";
  version = "2.1.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "tmbo";
    repo = "questionary";
    tag = version;
    hash = "sha256-HiQsOkG3oK+hnyeFjebnVASxpZhUPGBGz69JvPO43fM=";
    hash = "sha256-r7F5y6KD6zonQGtO/9OuCTMTWdkCdd9aqTgKg6eWp08=";
  };

  pythonRelaxDeps = [ "prompt_toolkit" ];