python3.pkgs.service-identity: 24.1.0 -> 24.2.0 (#370959)

zowoq 4b10a7b4 a65d8c74

Changed files
+6 -18
pkgs
development
python-modules
service-identity
tools
continuous-integration
buildbot
+5 -2
pkgs/development/python-modules/service-identity/default.nix
···
pyasn1-modules,
pytestCheckHook,
pythonOlder,
+
pyopenssl,
}:
buildPythonPackage rec {
pname = "service-identity";
-
version = "24.1.0";
+
version = "24.2.0";
format = "pyproject";
disabled = pythonOlder "3.8";
···
owner = "pyca";
repo = pname;
tag = version;
-
hash = "sha256-ibi9hls/VnVePv4fF2CyxI22P1RX6QpCwyeENWVPkx4=";
+
hash = "sha256-onxCUWqGVeenLqB5lpUpj3jjxTM61ogXCQOGnDnClT4=";
};
nativeBuildInputs = [
···
pyasn1
pyasn1-modules
];
+
+
checkInputs = [ pyopenssl ];
nativeCheckInputs = [ pytestCheckHook ];
+1 -16
pkgs/development/tools/continuous-integration/buildbot/default.nix
···
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.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 ];
-
});
-
};
-
};
+
python = python3;
buildbot-pkg = self.callPackage ./pkg.nix { };