depot/third_party/nixpkgs/pkgs/development/python-modules/pyhocon/default.nix
Default email 0fe1cd7bea Project import generated by Copybara.
GitOrigin-RevId: c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186
2021-07-16 21:40:57 +02:00

45 lines
938 B
Nix

{ 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 ];
};
}