Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / yte / default.nix
blob3280cc76803e42f7f9e036bb7a5009d285a5c3f5
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.1";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "koesterlab";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-7erT5UpejPMIoyqhpYNEON3YWE2l5SdP2olOVpkbNkY=";
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     homepage = "https://github.com/koesterlab/yte";
56     license = with licenses; [ mit ];
57     maintainers = with maintainers; [ fab ];
58   };