nixpkgs/pkgs/development/python-modules/pyhcl/default.nix

47 lines
1017 B
Nix
Raw Normal View History

2020-01-24 03:07:51 +00:00
{ buildPythonPackage
, fetchFromGitHub
, isPy3k
, lib
# pythonPackages
, coverage
, pytest
}:
buildPythonPackage rec {
pname = "pyhcl";
2020-03-23 13:08:32 +00:00
version = "0.4.1";
2020-01-24 03:07:51 +00:00
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "virtuald";
repo = pname;
rev = version;
2020-03-23 13:08:32 +00:00
sha256 = "13nszg2plfvza3syki1rxnx3k3h90qq4wkgv86l1xpz31k3pf6k4";
2020-01-24 03:07:51 +00:00
};
# https://github.com/virtuald/pyhcl/blob/51a7524b68fe21e175e157b8af931016d7a357ad/setup.py#L64
configurePhase = ''
echo '__version__ = "${version}"' > ./src/hcl/version.py
'';
checkInputs = [
coverage
pytest
];
# https://github.com/virtuald/pyhcl/blob/51a7524b68fe21e175e157b8af931016d7a357ad/tests/run_tests.sh#L4
checkPhase = ''
coverage run --source hcl -m pytest tests
'';
meta = with lib; {
description = "HCL is a configuration language. pyhcl is a python parser for it";
homepage = "https://github.com/virtuald/pyhcl";
license = licenses.mpl20;
maintainers = with maintainers; [
kamadorueda
];
};
}