From 8500e52278abc5fdcd72078eec686a76813a01e2 Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Mon, 1 Sep 2025 09:08:54 +0200 Subject: [PATCH] python313Packages.pysam: add nix-update-script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: László Kupcsik --- pkgs/development/python-modules/pysam/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pysam/default.nix b/pkgs/development/python-modules/pysam/default.nix index 3553d9540381..da739b495b11 100644 --- a/pkgs/development/python-modules/pysam/default.nix +++ b/pkgs/development/python-modules/pysam/default.nix @@ -13,6 +13,7 @@ setuptools, samtools, zlib, + nix-update-script, }: buildPythonPackage rec { @@ -79,6 +80,8 @@ buildPythonPackage rec { "pysam.libcsamtools" ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "Python module for reading, manipulating and writing genome data sets"; downloadPage = "https://github.com/pysam-developers/pysam";