Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / httpie-ntlm / default.nix
blobcbf3b29bcf03e0186308b79e935e0df000bc65fd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , httpie
5 , requests-ntlm
6 }:
8 buildPythonPackage rec {
9   pname = "httpie-ntlm";
10   version = "1.0.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "b1f757180c0bd60741ea16cf91fc53d47df402a5c287c4a61a14b335ea0552b3";
16   };
18   propagatedBuildInputs = [ httpie requests-ntlm ];
20   # Package have no tests
21   doCheck = false;
23   pythonImportsCheck = [ "httpie_ntlm" ];
25   meta = with lib; {
26     description = "NTLM auth plugin for HTTPie";
27     homepage = "https://github.com/httpie/httpie-ntlm";
28     license = licenses.bsdOriginal;
29     maintainers = with maintainers; [ kfollesdal ];
30   };