24fdeddc0a
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
46 lines
886 B
Nix
46 lines
886 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pyyaml,
|
|
jinja2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hiyapyco";
|
|
version = "0.7.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zerwes";
|
|
repo = pname;
|
|
rev = "refs/tags/release-${version}";
|
|
hash = "sha256-uF5DblAg4q8L1tZKopcjJ14NIQVQF5flNHdZ/jnw71M=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|