diff --git a/pkgs/development/python-modules/structlog/default.nix b/pkgs/development/python-modules/structlog/default.nix index a3b591db5f8e..cb21329cbf1b 100644 --- a/pkgs/development/python-modules/structlog/default.nix +++ b/pkgs/development/python-modules/structlog/default.nix @@ -6,6 +6,9 @@ , pytest-asyncio , pretend , freezegun +, hatch-fancy-pypi-readme +, hatch-vcs +, hatchling , simplejson , typing-extensions , pythonAtLeast @@ -13,16 +16,24 @@ buildPythonPackage rec { pname = "structlog"; - version = "22.1.0"; - format = "flit"; + version = "22.3.0"; + format = "pyproject"; src = fetchFromGitHub { owner = "hynek"; repo = "structlog"; rev = "refs/tags/${version}"; - sha256 = "sha256-2sdH6iP+l+6pBNC+sjpAX8bCdCANqqkaqZRmR68uwxY="; + sha256 = "sha256-+r+M+uTXdNBWQf0TGQuZgsCXg2CBKwH8ZE2+uAe0Dzg="; }; + nativeBuildInputs = [ + hatch-fancy-pypi-readme + hatch-vcs + hatchling + ]; + + SETUPTOOLS_SCM_PRETEND_VERSION = version; + propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ typing-extensions ];