python3Packages.httpx-ntlm: 0.0.10 -> 1.0.0
This commit is contained in:
parent
d3d2c44a26
commit
edf79a49ad
@ -3,29 +3,35 @@
|
||||
, cryptography
|
||||
, fetchPypi
|
||||
, httpx
|
||||
, ntlm-auth
|
||||
, pyspnego
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "httpx-ntlm";
|
||||
version = "0.0.10";
|
||||
version = "1.0.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "httpx_ntlm";
|
||||
inherit version;
|
||||
sha256 = "1rar6smz56y8k5qbgrpabpr639nwvf6whdi093hyakf0m3h9cpfz";
|
||||
sha256 = "sha256-pv/OxgcO0JWk2nCZp+bKlOdX7NqV6V5xZRDy5dd13qQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
httpx
|
||||
ntlm-auth
|
||||
pyspnego
|
||||
];
|
||||
|
||||
# https://github.com/ulodciv/httpx-ntlm/issues/5
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "httpx_ntlm" ];
|
||||
pythonImportsCheck = [
|
||||
"httpx_ntlm"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "NTLM authentication support for HTTPX";
|
||||
|
Loading…
Reference in New Issue
Block a user