From 3e929146cf01b532ec68a2f73af22271effdc75d Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Sun, 7 Jan 2024 23:18:05 +0100 Subject: [PATCH] pythonPackages.snakemake-interface-common: Fix eval with allowAliases false Was broken since initialised in 9b2d4d2faa875d91f76d77a9193ff7a840f263e7 but not noticed due to https://github.com/NixOS/nixpkgs/pull/271123#discussion_r1442134594 --- .../python-modules/snakemake-interface-common/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/snakemake-interface-common/default.nix b/pkgs/development/python-modules/snakemake-interface-common/default.nix index d8a326112c33..bccad271d4a1 100644 --- a/pkgs/development/python-modules/snakemake-interface-common/default.nix +++ b/pkgs/development/python-modules/snakemake-interface-common/default.nix @@ -3,7 +3,7 @@ , fetchFromGitHub , poetry-core , argparse-dataclass -, ConfigArgParse +, configargparse }: buildPythonPackage rec { @@ -24,7 +24,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ argparse-dataclass - ConfigArgParse + configargparse ]; pythonImportsCheck = [ "snakemake_interface_common" ];