depot/third_party/nixpkgs/pkgs/development/python-modules/hiyapyco/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
886 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyyaml,
jinja2,
}:
buildPythonPackage rec {
pname = "hiyapyco";
version = "0.5.6";
pyproject = true;
src = fetchFromGitHub {
owner = "zerwes";
repo = pname;
rev = "refs/tags/release-${version}";
hash = "sha256-WBSOjOX4naa0XDTnO593EAvtz5EjVPWCbiZaPXdx0e4=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
pyyaml
jinja2
];
checkPhase = ''
runHook preCheck
set -e
find test -name 'test_*.py' -exec python {} \;
runHook postCheck
'';
pythonImportsCheck = [ "hiyapyco" ];
meta = with lib; {
description = "Python library allowing hierarchical overlay of config files in YAML syntax";
homepage = "https://github.com/zerwes/hiyapyco";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ veehaitch ];
};
}