Skip to content

Commit

Permalink
Merge pull request #553 from wireapp/sysvinit/fix-python-versions
Browse files Browse the repository at this point in the history
Make Python versions consistent in Nix overlay
  • Loading branch information
sysvinit authored Apr 11, 2022
2 parents 40be67a + 7bca965 commit a9f49b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nix/overlay.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
self: super: {
pythonForAnsible = (self.python3.withPackages (_: self.ansible.requiredPythonModules ++ [
super.python38Packages.boto
super.python38Packages.boto3
super.python38Packages.cryptography
super.python38Packages.six
super.python3Packages.boto
super.python3Packages.boto3
super.python3Packages.cryptography
super.python3Packages.six
# for packet debugging and reporting.
super.python38Packages.pyshark
super.python38Packages.matplotlib
super.python3Packages.pyshark
super.python3Packages.matplotlib
]));

kubectl = self.callPackage ./pkgs/kubectl.nix { };
Expand Down

0 comments on commit a9f49b7

Please sign in to comment.