python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / httpie-ntlm / default.nix
blobfddee51c99fccc351aa123e8486de0c1790e304b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   httpie,
6   requests-ntlm,
7 }:
9 buildPythonPackage rec {
10   pname = "httpie-ntlm";
11   version = "1.0.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "b1f757180c0bd60741ea16cf91fc53d47df402a5c287c4a61a14b335ea0552b3";
17   };
19   propagatedBuildInputs = [
20     httpie
21     requests-ntlm
22   ];
24   # Package have no tests
25   doCheck = false;
27   pythonImportsCheck = [ "httpie_ntlm" ];
29   meta = with lib; {
30     description = "NTLM auth plugin for HTTPie";
31     homepage = "https://github.com/httpie/httpie-ntlm";
32     license = licenses.bsdOriginal;
33     maintainers = with maintainers; [ kfollesdal ];
34   };