My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyhocon/default.nix

45 lines
939 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pyparsing
, pytestCheckHook
, python-dateutil
}:
buildPythonPackage rec {
pname = "pyhocon";
version = "0.3.59";
src = fetchFromGitHub {
owner = "chimpler";
repo = "pyhocon";
rev = version;
sha256 = "1yr24plg3d4girg27ajjkf9mndig706fs8b2kmnmhi4l2xi866yh";
};
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 ];
};
}