From e14ef07d2677b48e6edaa3320f46fab55245f43f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 10 Jan 2025 09:39:57 +0100 Subject: [PATCH] python313Packages.graphene: 3.3.0 -> 3.4.3 Diff: https://github.com/graphql-python/graphene/compare/refs/tags/v3.3.0...v3.4.3 Changelog: https://github.com/graphql-python/graphene/releases/tag/v3.4.3 --- .../python-modules/graphene/default.nix | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/graphene/default.nix b/pkgs/development/python-modules/graphene/default.nix index a7cf197828c2..ccda491ae7e6 100644 --- a/pkgs/development/python-modules/graphene/default.nix +++ b/pkgs/development/python-modules/graphene/default.nix @@ -1,6 +1,5 @@ { lib, - aniso8601, buildPythonPackage, fetchFromGitHub, setuptools, @@ -11,42 +10,38 @@ pytest-mock, pytest7CheckHook, pythonOlder, - pytz, - snapshottest, + typing-extensions, + python-dateutil, }: buildPythonPackage rec { pname = "graphene"; - version = "3.3.0"; + version = "3.4.3"; pyproject = true; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "graphql-python"; repo = "graphene"; tag = "v${version}"; - hash = "sha256-DGxicCXZp9kW/OFkr0lAWaQ+GaECx+HD8+X4aW63vgQ="; + hash = "sha256-K1IGKK3nTsRBe2D/cKJ/ahnAO5xxjf4gtollzTwt1zU="; }; build-system = [ setuptools ]; dependencies = [ - aniso8601 graphql-core graphql-relay + python-dateutil + typing-extensions ]; - # snaphottest->fastdiff->wasmer dependency chain does not support 3.12. - doCheck = pythonOlder "3.12"; - nativeCheckInputs = [ pytest7CheckHook pytest-asyncio pytest-benchmark pytest-mock - pytz - snapshottest ]; pytestFlagsArray = [ "--benchmark-disable" ];