biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / eliot-tree / default.nix
blob9a1a8978598b89805b92c98cfecf5a19dfe73538
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "eliot-tree";
5   version = "21.0.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-hTl+r+QJPPQ7ss73lty3Wm7DLy2SKGmmgIuJx38ilO8=";
10   };
12   nativeCheckInputs = with python3Packages; [
13     testtools
14     pytest
15    ];
17   propagatedBuildInputs = with python3Packages; [
18     colored
19     eliot
20     iso8601
21     jmespath
22     setuptools
23     toolz
24   ];
26   # Tests run eliot-tree in out/bin.
27   checkPhase = ''
28     export PATH=$out/bin:$PATH
29     pytest
30   '';
32   meta = with lib; {
33     homepage = "https://github.com/jonathanj/eliottree";
34     description = "Render Eliot logs as an ASCII tree";
35     mainProgram = "eliot-tree";
36     license = licenses.mit;
37     maintainers = [ maintainers.dpausp ];
38   };