mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
python3Packages.httpie-ntlm: init at 1.0.2
This commit is contained in:
parent
6281fca161
commit
8f9fd7c775
31
pkgs/development/python-modules/httpie-ntlm/default.nix
Normal file
31
pkgs/development/python-modules/httpie-ntlm/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, httpie
|
||||
, requests_ntlm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "httpie-ntlm";
|
||||
version = "1.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b1f757180c0bd60741ea16cf91fc53d47df402a5c287c4a61a14b335ea0552b3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ httpie requests_ntlm ];
|
||||
|
||||
# Package have no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "httpie_ntlm" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "NTLM auth plugin for HTTPie";
|
||||
homepage = "https://github.com/httpie/httpie-ntlm";
|
||||
license = licenses.bsdOriginal;
|
||||
maintainers = with maintainers; [ kfollesdal ];
|
||||
};
|
||||
}
|
@ -3939,6 +3939,8 @@ in {
|
||||
|
||||
http-ece = callPackage ../development/python-modules/http-ece { };
|
||||
|
||||
httpie-ntlm = callPackage ../development/python-modules/httpie-ntlm { };
|
||||
|
||||
httplib2 = callPackage ../development/python-modules/httplib2 { };
|
||||
|
||||
http-message-signatures = callPackage ../development/python-modules/http-message-signatures { };
|
||||
|
Loading…
Reference in New Issue
Block a user