2021-10-20 01:00:46 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2022-03-07 16:56:53 +01:00
|
|
|
, lark
|
2021-10-20 01:00:46 +02:00
|
|
|
, nose
|
2022-02-17 00:41:14 +01:00
|
|
|
, pythonOlder
|
2021-10-20 01:00:46 +02:00
|
|
|
}:
|
2020-12-23 06:10:07 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bc-python-hcl2";
|
2022-07-11 04:41:20 +02:00
|
|
|
version = "0.3.45";
|
2022-02-17 00:41:14 +01:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
2020-12-23 06:10:07 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-07-11 04:41:20 +02:00
|
|
|
hash = "sha256-OmUN6wpsVP9/CS+JkEhirDBp1MqeA3oEcU77T5nJ9GU=";
|
2020-12-23 06:10:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Nose is required during build process, so can not use `checkInputs`.
|
|
|
|
buildInputs = [
|
|
|
|
nose
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2022-03-07 16:56:53 +01:00
|
|
|
lark
|
2020-12-23 06:10:07 +01:00
|
|
|
];
|
|
|
|
|
2021-10-20 01:00:46 +02:00
|
|
|
# This fork of python-hcl2 doesn't ship tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"hcl2"
|
|
|
|
];
|
2020-12-23 06:10:07 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2021-10-20 01:00:46 +02:00
|
|
|
description = "Parser for HCL2 written in Python using Lark";
|
2020-12-23 06:10:07 +01:00
|
|
|
longDescription = ''
|
2021-10-20 01:00:46 +02:00
|
|
|
This parser only supports HCL2 and isn't backwards compatible with HCL v1.
|
|
|
|
It can be used to parse any HCL2 config file such as Terraform.
|
2020-12-23 06:10:07 +01:00
|
|
|
'';
|
|
|
|
# Although this is the main homepage from PyPi but it is also a homepage
|
|
|
|
# of another PyPi package (python-hcl2). But these two are different.
|
|
|
|
homepage = "https://github.com/amplify-education/python-hcl2";
|
|
|
|
license = licenses.mit;
|
2021-10-20 01:00:46 +02:00
|
|
|
maintainers = with maintainers; [ anhdle14 ];
|
2020-12-23 06:10:07 +01:00
|
|
|
};
|
|
|
|
}
|