Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 41814091666b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2e0b261da8c4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 13, 2021

  1. python3Packages.urllib3: disable two tests that fail on aarch64

    Use null workaround to avoid rebuild on other platforms.
    FRidh committed Mar 13, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    2e0b261 View commit details
Showing with 9 additions and 0 deletions.
  1. +9 −0 pkgs/development/python-modules/urllib3/default.nix
9 changes: 9 additions & 0 deletions pkgs/development/python-modules/urllib3/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib
, stdenv
, brotli
, buildPythonPackage
, certifi
@@ -46,6 +47,14 @@ buildPythonPackage rec {
trustme
];

disabledTests = if stdenv.hostPlatform.isAarch64 then
[
"test_connection_closed_on_read_timeout_preload_false"
"test_ssl_failed_fingerprint_verification"
]
else
null;

pythonImportsCheck = [ "urllib3" ];

meta = with lib; {