python3Packages.typer: 0.6.1 -> 0.7.0

This commit is contained in:
Martin Weinelt
2022-12-30 20:13:54 +01:00
parent 96994cfea8
commit bc5b4286b0

View File

@@ -17,16 +17,21 @@
buildPythonPackage rec {
pname = "typer";
version = "0.6.1";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-LVcgpeY/c+rzHtqhX2q4fzXwaQ+MojMBfX0j10OpHXM=";
hash = "sha256-/3l4RleKnyogG1NEKu3rVDMZRmhw++HHAeq2bddoEWU=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "rich >=10.11.0,<13.0.0" "rich"
'';
nativeBuildInputs = [
flit-core
];