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

                    
                 
      


                 



                        
                     
 



                         
                                                                   

    



                           
 



                   
 
                                     

                    
                                                      
                                            
                                                  








                                                                           
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pyparsing
, pytestCheckHook
, python-dateutil
}:

buildPythonPackage rec {
  pname = "pyhocon";
  version = "0.3.58";

  src = fetchFromGitHub {
    owner = "chimpler";
    repo = "pyhocon";
    rev = version;
    sha256 = "sha256-ddspVDKy9++cISWH6R95r+gJrzNGqMTybI04OgVtIUU=";
  };

  propagatedBuildInputs = [
    pyparsing
    python-dateutil
  ];

  checkInputs = [
    mock
    pytestCheckHook
  ];

  pythonImportsCheck = [ "pyhocon" ];

  meta = with lib; {
    homepage = "https://github.com/chimpler/pyhocon/";
    description = "HOCON parser for Python";
    # taken from https://pypi.org/project/pyhocon/
    longDescription = ''
      A HOCON parser for Python. It additionally provides a tool
      (pyhocon) to convert any HOCON content into json, yaml and properties
      format
    '';
    license = licenses.asl20;
    maintainers = [ maintainers.chreekat ];
  };
}