pythonPackages.keep: init at 2.9

This commit is contained in:
Robert Scott 2020-08-31 15:03:14 +01:00 committed by Jon
parent 784e32ec1a
commit 6bdad12b56
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, PyGithub
, terminaltables
, click
, requests
}:
buildPythonPackage rec {
pname = "keep";
version = "2.9";
src = fetchPypi {
inherit pname version;
sha256 = "0902kcvhbmy5q5n0ai1df29ybf87qaljz306c5ssl8j9xdjipcq2";
};
propagatedBuildInputs = [
click
requests
terminaltables
PyGithub
];
# no tests
pythonImportsCheck = [ "keep" ];
meta = with stdenv.lib; {
homepage = "https://github.com/orkohunter/keep";
description = "A Meta CLI toolkit: Personal shell command keeper and snippets manager";
platforms = platforms.all;
license = licenses.mit;
maintainers = with maintainers; [ ris ];
};
}

View file

@ -3104,6 +3104,8 @@ in {
kconfiglib = callPackage ../development/python-modules/kconfiglib { };
keep = callPackage ../development/python-modules/keep { };
keepalive = callPackage ../development/python-modules/keepalive { };
keepkey_agent = callPackage ../development/python-modules/keepkey_agent { };