blob: 812e2f022dbf64db92191aa485a091936bfb7fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
httpx,
pyspnego,
}:
buildPythonPackage rec {
pname = "httpx-ntlm";
version = "1.4.0";
format = "setuptools";
src = fetchPypi {
pname = "httpx_ntlm";
inherit version;
hash = "sha256-Qb6KK6hRQ0hOYX3LkX1LGeOuEq/caIYipJAQNJk7U+Q=";
};
propagatedBuildInputs = [
httpx
pyspnego
];
# https://github.com/ulodciv/httpx-ntlm/issues/5
doCheck = false;
pythonImportsCheck = [ "httpx_ntlm" ];
meta = {
description = "NTLM authentication support for HTTPX";
homepage = "https://github.com/ulodciv/httpx-ntlm";
changelog = "https://github.com/ulodciv/httpx-ntlm/releases/tag/${version}";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ fab ];
};
}
|