Skip to content

Commit

Permalink
buildbot: python3Packages.service-identity: 24.1.0 -> 24.2.0 (NixOS#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored Jan 5, 2025
2 parents 844f2a5 + 7f9857f commit 1d606ab
Showing 1 changed file with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,25 @@
newScope,
python3,
recurseIntoAttrs,
fetchFromGitHub,
}:
# Take packages from self first, then python.pkgs (and secondarily pkgs)
lib.makeScope (self: newScope (self.python.pkgs // self)) (self: {
python = python3;
python = python3.override {
self = self.python;
packageOverrides = self: super: {
service-identity = super.service-identity.overridePythonAttrs (oldAttrs: {
version = "24.2.0";
src = fetchFromGitHub {
owner = "pyca";
repo = "service-identity";
tag = "24.2.0";
hash = "sha256-onxCUWqGVeenLqB5lpUpj3jjxTM61ogXCQOGnDnClT4=";
};
checkInputs = [ super.pyopenssl ];
});
};
};

buildbot-pkg = self.callPackage ./pkg.nix { };

Expand Down

0 comments on commit 1d606ab

Please sign in to comment.