diff options
| author | Artturin <Artturin@artturin.com> | 2022-10-03 16:56:51 +0300 |
|---|---|---|
| committer | Artturin <Artturin@artturin.com> | 2022-10-10 15:30:59 +0300 |
| commit | f4ea1208ec732d423a784bbb2b882f997b6af902 (patch) | |
| tree | cadc358926dfd142fb2c1ebf0dce6317b48474dc /pkgs/development/python-modules/python-telegram-bot | |
| parent | 8d32772702a4ebdf15c77e2e927787ae360a6bf6 (diff) | |
treewide: *Flags convert to list from str
*Flags implies a list
slightly relevant:
> stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172
the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so
it's not a breaking change
Diffstat (limited to 'pkgs/development/python-modules/python-telegram-bot')
| -rw-r--r-- | pkgs/development/python-modules/python-telegram-bot/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-telegram-bot/default.nix b/pkgs/development/python-modules/python-telegram-bot/default.nix index 677322fc50d1..47d716d1c868 100644 --- a/pkgs/development/python-modules/python-telegram-bot/default.nix +++ b/pkgs/development/python-modules/python-telegram-bot/default.nix @@ -43,7 +43,7 @@ buildPythonPackage rec { --replace "tornado==6.1" "tornado" ''; - setupPyGlobalFlags = "--with-upstream-urllib3"; + setupPyGlobalFlags = [ "--with-upstream-urllib3" ]; # tests not included with release doCheck = false; |
