My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/keep/default.nix

37 lines
724 B

{ lib
, buildPythonPackage
, fetchPypi
, PyGithub
, terminaltables
, click
, requests
}:
buildPythonPackage rec {
pname = "keep";
version = "2.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "3abbe445347711cecd9cbb80dab4a0777418972fc14a14e9387d0d2ae4b6adb7";
};
propagatedBuildInputs = [
click
requests
terminaltables
PyGithub
];
# no tests
doCheck = false;
pythonImportsCheck = [ "keep" ];
meta = with 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 ];
};
}