Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / tailer / default.nix
blobffc7e3da17c8be82c39890fc55caa52e336e30cc
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , python
5 }:
7 buildPythonPackage rec {
8   pname = "tailer";
9   version = "0.4.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "six8";
14     repo = "pytailer";
15     rev = version;
16     sha256 = "1s5p5m3q9k7r1m0wx5wcxf20xzs0rj14qwg1ydwhf6adr17y2w5y";
17   };
19   checkPhase = ''
20     runHook preCheck
21     ${python.interpreter} -m doctest -v src/tailer/__init__.py
22     runHook postCheck
23   '';
25   pythonImportsCheck = [ "tailer" ];
27   meta = with lib; {
28     description = "Python implementation implementation of GNU tail and head";
29     mainProgram = "pytail";
30     homepage = "https://github.com/six8/pytailer";
31     license = with licenses; [ mit ];
32     maintainers = with maintainers; [ fab ];
33   };