Unverified Commit 77fc6692 authored by Moraxyc's avatar Moraxyc
Browse files

python312Packages.noneprompt: init at 0.1.9

parent 9b255814
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchPypi,
  lib,
  poetry-core,
  prompt-toolkit,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "noneprompt";
  version = "0.1.9";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-M4uLuJqNIu818d7bOqfBsijPE5lzvcQ8X/w+72RFfbk=";
  };

  build-system = [ poetry-core ];

  dependencies = [ prompt-toolkit ];

  # no test
  doCheck = false;

  pythonImportsCheck = [ "noneprompt" ];

  meta = {
    description = "Prompt toolkit for console interaction";
    homepage = "https://github.com/nonebot/noneprompt";
    changelog = "https://github.com/nonebot/noneprompt/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ moraxyc ];
    mainProgram = "noneprompt";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8652,6 +8652,8 @@ self: super: with self; {
  nomadnet = callPackage ../development/python-modules/nomadnet { };
  noneprompt = callPackage ../development/python-modules/noneprompt {  };
  nox = callPackage ../development/python-modules/nox { };
  nanomsg-python = callPackage ../development/python-modules/nanomsg-python {