pkgs/swh/swh-model: 6.7.0 -> 7.1.0

This commit is contained in:
Gabriel Arazas 2025-03-25 09:48:57 +08:00
parent 9c76f03186
commit e27308dea9
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -3,18 +3,17 @@
with python3Packages; with python3Packages;
buildPythonPackage rec { buildPythonPackage rec {
pname = "swh-model"; pname = "swh-model";
version = "6.7.0"; version = "7.1.0";
pyproject = true;
src = fetchPypi { src = fetchPypi {
inherit version; inherit version;
pname = "swh.model"; pname = "swh_model";
sha256 = "sha256-88xlN/vGXMG858+0A1Wb4EIYC9btRTopY7Ryvw/huDo="; hash = "sha256-MdyhpKm4UzIFVMhIlAT75OMUmfDcOFZzk/dJIZASwmE=";
}; };
doCheck = false; doCheck = false;
propagatedBuildInputs = [ propagatedBuildInputs = [
click
dulwich
deprecated deprecated
typing-extensions typing-extensions
hypothesis hypothesis
@ -22,8 +21,14 @@ buildPythonPackage rec {
python-dateutil python-dateutil
attrs attrs
attrs-strict attrs-strict
aiohttp
pytz
swh-core swh-core
# requirements for CLI
click
dulwich
]; ];
meta = with lib; { meta = with lib; {