pythonPackages.keep: init at 2.9
This commit is contained in:
parent
784e32ec1a
commit
6bdad12b56
36
pkgs/development/python-modules/keep/default.nix
Normal file
36
pkgs/development/python-modules/keep/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user