Unverified Commit 9458fb2b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #225718 from fabaff/httpx-ntlm-fix

python310Packages.httpx-ntlm: fix version specifiers
parents 5bea5fc0 ffa1bc28
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, httpx
, pyspnego
, pythonOlder
@@ -19,6 +20,15 @@ buildPythonPackage rec {
    hash = "sha256-a1a5laZ4tNOtpVDFCK1t2IXWbyJytZMhuad2JtmA52I=";
  };

  patches = [
    # Update version specifiers, https://github.com/ulodciv/httpx-ntlm/pull/15
    (fetchpatch {
      name = "update-version-specifiers.patch";
      url = "https://github.com/ulodciv/httpx-ntlm/commit/dac67a957c5c23df29d4790ddbc7cc4bccfc0e35.patch";
      hash = "sha256-YtgRrgGG/x7jvNg+NuQIrkOUdyD6Bk53fRaiXBwiV+o=";
    })
  ];

  propagatedBuildInputs = [
    httpx
    pyspnego