diff --git a/pkgs/development/python-modules/pysuez/default.nix b/pkgs/development/python-modules/pysuez/default.nix index 8c04887f758c..51083d78558a 100644 --- a/pkgs/development/python-modules/pysuez/default.nix +++ b/pkgs/development/python-modules/pysuez/default.nix @@ -2,15 +2,15 @@ lib, buildPythonPackage, fetchFromGitHub, - setuptools, + hatchling, + aiohttp, regex, - requests, pythonOlder, }: buildPythonPackage rec { pname = "pysuez"; - version = "0.2.2"; + version = "1.3.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -18,15 +18,15 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "jb101010-2"; repo = "pySuez"; - rev = "refs/tags/${version}"; - hash = "sha256-+pLknJDF0SsC6OsmP64D/yZeu0sGNtKo8EBGlDewBug="; + tag = version; + hash = "sha256-aThZN5Ece9zzEICjLj2HmYoLwDhd7rft3Il3kM73h7M="; }; - build-system = [ setuptools ]; + build-system = [ hatchling ]; dependencies = [ + aiohttp regex - requests ]; # Module has no tests