From f3f29b79123c4cf56290e02a5a9736ac6a954617 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 May 2026 02:00:40 +0000 Subject: [PATCH] python3Packages.pydocket: 0.20.1 -> 0.20.2 --- .../python-modules/pydocket/default.nix | 22 +++---------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/pkgs/development/python-modules/pydocket/default.nix b/pkgs/development/python-modules/pydocket/default.nix index 256562709b55..c3055786ee7f 100644 --- a/pkgs/development/python-modules/pydocket/default.nix +++ b/pkgs/development/python-modules/pydocket/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - pytestCheckHook, # build-system hatch-vcs, @@ -22,24 +21,19 @@ typer, typing-extensions, uncalled-for, - - docker, - pytest-asyncio, - pytest-cov, - pytest-timeout, - pytest-xdist, }: buildPythonPackage (finalAttrs: { pname = "pydocket"; - version = "0.20.1"; + version = "0.20.2"; pyproject = true; + __structuredAttrs = true; src = fetchFromGitHub { owner = "chrisguidry"; repo = "docket"; tag = finalAttrs.version; - hash = "sha256-QCx1tpiMkyIveay3OwnjcTRb8pTJNcTjOyor59oYHqQ="; + hash = "sha256-KEKk9/tewl46GkZ7DV6MixAzz9ZKMIqjwzj5kZ38AFk="; }; build-system = [ @@ -74,16 +68,6 @@ buildPythonPackage (finalAttrs: { # All tests require internet access doCheck = false; - nativeCheckInputs = [ - pytestCheckHook - - docker - opentelemetry-sdk - pytest-asyncio - pytest-cov - pytest-timeout - pytest-xdist - ]; meta = { description = "Distributed background task system for Python";