python313Packages.gotenberg-client: 0.10.0 -> 0.11.0

Changelog: https://github.com/stumpylog/gotenberg-client/releases/tag/0.11.0

Changed files
+7 -6
pkgs
development
python-modules
gotenberg-client
+7 -6
pkgs/development/python-modules/gotenberg-client/default.nix
···
}:
buildPythonPackage rec {
pname = "gotenberg-client";
-
version = "0.10.0";
+
version = "0.11.0";
pyproject = true;
-
-
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "stumpylog";
repo = "gotenberg-client";
tag = version;
-
hash = "sha256-eDYgKbNeNCIdENo6DVmcABRwP5JUMCJW7NtbPOA5aqg=";
+
hash = "sha256-a/GXVhZtxGgmx5mb8hozbXAI9ecrl0c6BIz3BNekA8Q=";
};
-
nativeBuildInputs = [ hatchling ];
+
build-system = [ hatchling ];
-
propagatedBuildInputs = [
+
dependencies = [
httpx
]
++ lib.optionals (pythonOlder "3.11") [ typing-extensions ]
++ httpx.optional-dependencies.http2;
+
+
# requires running gotenberg service
+
doCheck = false;
pythonImportsCheck = [ "gotenberg_client" ];