From 083538e5d229dfa175fb7f92fa91101b1d866024 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Tue, 22 Apr 2025 09:52:59 +0200 Subject: [PATCH] python3Packages.jsonschema-rs: add update script To allow using the local update script for maintainers. --- pkgs/development/python-modules/jsonschema-rs/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/jsonschema-rs/default.nix b/pkgs/development/python-modules/jsonschema-rs/default.nix index b11211ff687d..b0b091ee83f5 100644 --- a/pkgs/development/python-modules/jsonschema-rs/default.nix +++ b/pkgs/development/python-modules/jsonschema-rs/default.nix @@ -3,6 +3,7 @@ fetchPypi, hypothesis, lib, + nix-update-script, pytestCheckHook, pythonOlder, rustPlatform, @@ -41,6 +42,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonschema_rs" ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "High-performance JSON Schema validator for Python"; homepage = "https://github.com/Stranger6667/jsonschema/tree/master/crates/jsonschema-py";