Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 700 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, PyGithub 5, terminaltables 6, click 7, requests 8}: 9 10buildPythonPackage rec { 11 pname = "keep"; 12 version = "2.9"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "0902kcvhbmy5q5n0ai1df29ybf87qaljz306c5ssl8j9xdjipcq2"; 17 }; 18 19 propagatedBuildInputs = [ 20 click 21 requests 22 terminaltables 23 PyGithub 24 ]; 25 26 # no tests 27 pythonImportsCheck = [ "keep" ]; 28 29 meta = with stdenv.lib; { 30 homepage = "https://github.com/orkohunter/keep"; 31 description = "A Meta CLI toolkit: Personal shell command keeper and snippets manager"; 32 platforms = platforms.all; 33 license = licenses.mit; 34 maintainers = with maintainers; [ ris ]; 35 }; 36}