From 74ae5abbf1bccee90e13997fa68a2664a6a48bcd Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 14 Oct 2024 12:47:29 +0300 Subject: [PATCH] biopython: fix eval --- pkgs/development/python-modules/biopython/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/biopython/default.nix b/pkgs/development/python-modules/biopython/default.nix index 900c3f019f28..2a3d3d0b86e3 100644 --- a/pkgs/development/python-modules/biopython/default.nix +++ b/pkgs/development/python-modules/biopython/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "biopython"; repo = "biopython"; - rev = "refs/tags/biopython-${lib.replaceChars [ "." ] [ "" ] version}"; + rev = "refs/tags/biopython-${lib.replaceStrings [ "." ] [ "" ] version}"; hash = "sha256-zXUB/AkWc/cY9M02WheSvXjT/nwM+lGXfXgCcWfu0G4="; };