summary refs log blame commit diff
path: root/pkgs/development/python-modules/ntlm-auth/default.nix
blob: d56fccde051db5d61787f7aff0e29c99a910825b (plain) (tree)
1
2
3
4
5
6
7

                    
              

                 
                 
          




                        
                    




                         
                                                                    

    



                           
 






                                       


                                                         

                                                        



                                                   
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, mock
, pytestCheckHook
, requests
, six
}:

buildPythonPackage rec {
  pname = "ntlm-auth";
  version = "1.5.0";

  src = fetchFromGitHub {
    owner = "jborean93";
    repo = "ntlm-auth";
    rev = "v${version}";
    sha256 = "00dpf5bfsy07frsjihv1k10zmwcyq4bvkilbxha7h6nlwpcm2409";
  };

  propagatedBuildInputs = [
    cryptography
    six
  ];

  checkInputs = [
    mock
    pytestCheckHook
    requests
  ];

  pythonImportsCheck = [ "ntlm_auth" ];

  meta = with lib; {
    description = "Calculates NTLM Authentication codes";
    homepage = "https://github.com/jborean93/ntlm-auth";
    license = licenses.mit;
    maintainers = with maintainers; [ elasticdog ];
    platforms = platforms.all;
  };
}