woob: 3.5 -> 3.6

This commit is contained in:
Damien Cassou 2023-05-26 17:31:37 +02:00
parent b2abc0e2e5
commit 3df253a9b9
No known key found for this signature in database
GPG key ID: B68746238E59B548

View file

@ -16,6 +16,7 @@
, pythonOlder , pythonOlder
, pyyaml , pyyaml
, requests , requests
, rich
, termcolor , termcolor
, testers , testers
, unidecode , unidecode
@ -24,7 +25,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "woob"; pname = "woob";
version = "3.5"; version = "3.6";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -33,7 +34,7 @@ buildPythonPackage rec {
owner = "woob"; owner = "woob";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-Yb3AgUSqr9r2TIymiEUIhKThNC7yjQEkhi8GSI9fqNA="; hash = "sha256-M9AjV954H1w64YGCVxDEGGSnoEbmocG3zwltob6IW04=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -53,6 +54,7 @@ buildPythonPackage rec {
pycountry pycountry
pyyaml pyyaml
requests requests
rich
termcolor termcolor
unidecode unidecode
]; ];