python3Packages.questionary: 1.9.0 -> 1.10.0

This commit is contained in:
Fabian Affolter 2021-07-22 11:39:52 +02:00
parent 75475ff1f0
commit db13942782

View File

@ -9,19 +9,23 @@
buildPythonPackage rec {
pname = "questionary";
version = "1.9.0";
version = "1.10.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "tmbo";
repo = pname;
rev = version;
sha256 = "1x748bz7l2r48031dj6vr6jvvac28pv6vx1bina4lz60h1qac1kf";
sha256 = "14k24fq2nmk90iv0k7pnmmdhmk8z261397wg52sfcsccyhpdw3i7";
};
nativeBuildInputs = [ poetry ];
nativeBuildInputs = [
poetry
];
propagatedBuildInputs = [ prompt_toolkit ];
propagatedBuildInputs = [
prompt_toolkit
];
checkInputs = [
pytest-cov
@ -32,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library to build command line user prompts";
homepage = "https://github.com/bachya/regenmaschine";
homepage = "https://github.com/tmbo/questionary";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};