mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
0215034f25
when they already rely on SRI hashes.
68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, pyparsing
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyhocon";
|
|
version = "0.3.60";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chimpler";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-H460j/DjY1lltapva3l87oyOJVjzUE9Q/oKti3SsUyU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyparsing
|
|
python-dateutil
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pyparsing~=2.0" "pyparsing>=2.0"
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"pyhocon"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# pyparsing.exceptions.ParseException: Expected end of text, found '='
|
|
# https://github.com/chimpler/pyhocon/issues/273
|
|
"tests/test_tool.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError: assert ConfigTree([(...
|
|
"test_dict_merge"
|
|
"test_parse_override"
|
|
"test_include_dict"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "HOCON parser for Python";
|
|
homepage = "https://github.com/chimpler/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 = with maintainers; [ chreekat ];
|
|
};
|
|
}
|