mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
python3Packages.httpx-ntlm: init at 0.0.10
This commit is contained in:
parent
cde2014891
commit
bd3eb499b8
36
pkgs/development/python-modules/httpx-ntlm/default.nix
Normal file
36
pkgs/development/python-modules/httpx-ntlm/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, cryptography
|
||||||
|
, fetchPypi
|
||||||
|
, httpx
|
||||||
|
, ntlm-auth
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "httpx-ntlm";
|
||||||
|
version = "0.0.10";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "httpx_ntlm";
|
||||||
|
inherit version;
|
||||||
|
sha256 = "1rar6smz56y8k5qbgrpabpr639nwvf6whdi093hyakf0m3h9cpfz";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
cryptography
|
||||||
|
httpx
|
||||||
|
ntlm-auth
|
||||||
|
];
|
||||||
|
|
||||||
|
# https://github.com/ulodciv/httpx-ntlm/issues/5
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "httpx_ntlm" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "NTLM authentication support for HTTPX";
|
||||||
|
homepage = "https://github.com/ulodciv/httpx-ntlm";
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -3383,6 +3383,8 @@ in {
|
|||||||
|
|
||||||
httpx = callPackage ../development/python-modules/httpx { };
|
httpx = callPackage ../development/python-modules/httpx { };
|
||||||
|
|
||||||
|
httpx-ntlm = callPackage ../development/python-modules/httpx-ntlm { };
|
||||||
|
|
||||||
httpx-socks = callPackage ../development/python-modules/httpx-socks { };
|
httpx-socks = callPackage ../development/python-modules/httpx-socks { };
|
||||||
|
|
||||||
huawei-lte-api = callPackage ../development/python-modules/huawei-lte-api { };
|
huawei-lte-api = callPackage ../development/python-modules/huawei-lte-api { };
|
||||||
|
Loading…
Reference in New Issue
Block a user