1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.snakemake-interface-common: Fix eval with allowAliases false

Was broken since initialised in 9b2d4d2faa
but not noticed due to https://github.com/NixOS/nixpkgs/pull/271123#discussion_r1442134594
This commit is contained in:
Silvan Mosberger 2024-01-07 23:18:05 +01:00
parent 9be716fb75
commit 3e929146cf

View file

@ -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" ];