···11-{ lib, fetchurl, fetchFromGitHub, buildPythonPackage, isPy3k,
11+{ lib, fetchpatch, fetchFromGitHub, buildPythonPackage, isPy3k,
22isodate, lxml, xmlsec, freezegun }:
3344buildPythonPackage rec {
···1313 sha256 = "1yk02xq90bm7p6k091av6gapb5h2ccxzgrbm03sj2x8h0wff9s8k";
1414 };
15151616+ # Remove both patches on update
1617 patches = [
1718 # Remove the dependency on defusedxml
1819 #
1920 # This patch is already merged upstream and does not introduce any
2021 # functionality changes.
2121- (fetchurl {
2222+ (fetchpatch {
2223 url = "https://github.com/onelogin/python3-saml/commit/4b6c4b1f2ed3f6eab70ff4391e595b808ace168c.patch";
2323- sha256 = "11gqn7ib2hmlx5wp4xhi375v5ajapwmj4lpw0y44bh5ww8cypvqy";
2424+ sha256 = "sha256-KHyAoX3our3Rz2z4xo0lTBB1XOGuC3Pe+lUDCzK5WQI=";
2525+ })
2626+2727+ # Update expiry dates for test response XMLs
2828+ (fetchpatch {
2929+ url = "https://github.com/onelogin/python3-saml/commit/05611bbf6d7d8313adb9c77ff88a9210333ccc38.patch";
3030+ sha256 = "sha256-62TwgCXDFYsZIAeqAysJRziMvhUVhGzta/C2wS3v4HY=";
2431 })
2532 ];
2633
+8-9
pkgs/development/tools/analysis/rr/unstable.nix
···11-# This is a temporary copy of the default.nix in this folder, with the version updated to the current tip of rr's master branch.
22-# This exists because rr has not had a release in a long time, but there have been a lot of improvements including UX.
33-# Some of the UX improvements help prevent foot shooting.
44-# Upstream has stated that it should be fine to use master.
55-# This file, and its attribute in all-packages, can be removed once rr makes a release.
66-# For further information, please see https://github.com/NixOS/nixpkgs/issues/99535 "Improve support for the rr debugger in nixos containers"
11+# This is a temporary copy of the default.nix in this folder, with the version
22+# updated to the current tip of rr's master branch. This exists because rr has
33+# not had a release in a long time. Upstream has stated that it should be fine
44+# to use master. This file, and its attribute in all-packages, can be removed
55+# once rr makes a release.
7687{ callPackage, fetchFromGitHub }:
98···1211in
13121413 rr.overrideAttrs (old: {
1515- version = "unstable-2020-10-04";
1414+ version = "unstable-2021-07-06";
16151716 src = fetchFromGitHub {
1817 owner = "mozilla";
1918 repo = "rr";
2020- rev = "9ff375813a740a0a6ebcdfcebc58bd61ab68c667";
2121- sha256 = "0raifs6cg5ckpi2445inhy3hfhp4p89s1lkx9z17mcc2g1c1phf5";
1919+ rev = "0fc21a8d654dabc7fb1991d76343824cb7951ea0";
2020+ sha256 = "0s851rflxmvxcfw97zmplcwzhv86xmd3my78pi4c7gkj18d621i5";
2221 };
2322 })