Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / yte / default.nix
blob6b8bcfb95be1b1bd80263dbdbd81493796677d5f
1 { lib
2 , buildPythonPackage
3 , dpath
4 , fetchFromGitHub
5 , plac
6 , poetry-core
7 , pytestCheckHook
8 , pythonOlder
9 , pyyaml
12 buildPythonPackage rec {
13   pname = "yte";
14   version = "1.5.4";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "koesterlab";
21     repo = "yte";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-Rm3EKxRZCdYErkyWK9+fF2W7C+v5/MXD/LkehmB6UNQ=";
24   };
26   nativeBuildInputs = [
27     poetry-core
28   ];
30   propagatedBuildInputs = [
31     dpath
32     plac
33     pyyaml
34   ];
36   nativeCheckInputs = [
37     pytestCheckHook
38   ];
40   pythonImportsCheck = [
41     "yte"
42   ];
44   pytestFlagsArray = [
45     "tests.py"
46   ];
48   preCheck = ''
49     # The CLI test need yte on the PATH
50     export PATH=$out/bin:$PATH
51   '';
53   meta = with lib; {
54     description = "YAML template engine with Python expressions";
55     mainProgram = "yte";
56     homepage = "https://github.com/koesterlab/yte";
57     changelog = "https://github.com/yte-template-engine/yte/blob/v${version}/CHANGELOG.md";
58     license = with licenses; [ mit ];
59     maintainers = with maintainers; [ fab ];
60   };