summary refs log blame commit diff
path: root/pkgs/development/python-modules/types-requests/default.nix
blob: d6d7f752a7a9c9dd550de482bc6875da4bb9c531 (plain) (tree)
1
2
3
4
5
6
7
8
9


                    
               



                           
                      
                        


                          
                                                                   

    



                           
                             

                  


                        







                                                    
{ lib
, buildPythonPackage
, fetchPypi
, types-urllib3
}:

buildPythonPackage rec {
  pname = "types-requests";
  version = "2.27.14";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-BFee4WT3wmWb5GlQ48L41RoIGtJS7xsB1LEvq6XDgQs=";
  };

  propagatedBuildInputs = [
    types-urllib3
  ];

  # Module doesn't have tests
  doCheck = false;

  pythonImportsCheck = [
    "requests-stubs"
  ];

  meta = with lib; {
    description = "Typing stubs for requests";
    homepage = "https://github.com/python/typeshed";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}