at 23.11-beta 724 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pygithub 5, terminaltables 6, click 7, requests 8}: 9 10buildPythonPackage rec { 11 pname = "keep"; 12 version = "2.10.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "3abbe445347711cecd9cbb80dab4a0777418972fc14a14e9387d0d2ae4b6adb7"; 17 }; 18 19 propagatedBuildInputs = [ 20 click 21 requests 22 terminaltables 23 pygithub 24 ]; 25 26 # no tests 27 doCheck = false; 28 pythonImportsCheck = [ "keep" ]; 29 30 meta = with lib; { 31 homepage = "https://github.com/orkohunter/keep"; 32 description = "A Meta CLI toolkit: Personal shell command keeper and snippets manager"; 33 platforms = platforms.all; 34 license = licenses.mit; 35 maintainers = with maintainers; [ ris ]; 36 }; 37}