In a project we are using boto3 package which is imported from python3. Our requirement is to update the boto3 package without updating nixpkgs version, basically we wanted to override only boto3 package. How can we do that ?
This is how we are importing the package boto3 with other packages from python3 using nixpkgs
infra-env = pkgs.python3.withPackages (ps: with ps; [ boto3 kubernetes requests schema python-jenkins croniter validators]);
Looks like you want overridePythonAttrs
, it is documented here:
https://nixos.org/manual/nixpkgs/stable/#overridePythonAttrs
Sure. Let me try that.
Last updated: Nov 15 2024 at 12:33 UTC