Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, httpie 5, requests_ntlm 6}: 7 8buildPythonPackage rec { 9 pname = "httpie-ntlm"; 10 version = "1.0.2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "b1f757180c0bd60741ea16cf91fc53d47df402a5c287c4a61a14b335ea0552b3"; 16 }; 17 18 propagatedBuildInputs = [ httpie requests_ntlm ]; 19 20 # Package have no tests 21 doCheck = false; 22 23 pythonImportsCheck = [ "httpie_ntlm" ]; 24 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 }; 31}