summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-21 23:47:30 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-21 23:47:30 +0200
commit5119a3386cf7f4209311d98c213299b44f5b70c5 (patch)
tree9f0b5065a098d2ff919153fcaaf77c046ff06113 /pkgs/development
parent0425d81848bbe12415f001a1d9915532e99fc899 (diff)
python3Packages.tailer: init at 0.4.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/tailer/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/tailer/default.nix b/pkgs/development/python-modules/tailer/default.nix
new file mode 100644
index 000000000000..b8e19b7d97d8
--- /dev/null
+++ b/pkgs/development/python-modules/tailer/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "tailer";
+ version = "0.4.1";
+
+ src = fetchFromGitHub {
+ owner = "six8";
+ repo = "pytailer";
+ rev = version;
+ sha256 = "1s5p5m3q9k7r1m0wx5wcxf20xzs0rj14qwg1ydwhf6adr17y2w5y";
+ };
+
+ checkPhase = ''
+ runHook preCheck
+ ${python.interpreter} -m doctest -v src/tailer/__init__.py
+ runHook postCheck
+ '';
+
+ pythonImportsCheck = [ "tailer" ];
+
+ meta = with lib; {
+ description = "Python implementation implementation of GNU tail and head";
+ homepage = "https://github.com/six8/pytailer";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}