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





                    
            




                        
                     


                          
                                                                   





                           
              




                                                     
                                    


                                                                       
                                                            



                                              
{ lib
, fetchPypi
, buildPythonPackage
, click-plugins
, colorama
, requests
, setuptools
, XlsxWriter
}:

buildPythonPackage rec {
  pname = "shodan";
  version = "1.25.0";

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

  propagatedBuildInputs = [
    click-plugins
    colorama
    requests
    setuptools
    XlsxWriter
  ];

  # The tests require a shodan api key, so skip them.
  doCheck = false;
  pythonImportsCheck = [ "shodan" ];

  meta = with lib; {
    description = "Python library and command-line utility for Shodan";
    homepage = "https://github.com/achillean/shodan-python";
    license = licenses.mit;
    maintainers = with maintainers; [ lihop ];
  };
}