evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / keep / default.nix
blob6023df4674203443bca55eb7d137c22dd9668c56
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pygithub,
6   terminaltables,
7   click,
8   requests,
9 }:
11 buildPythonPackage rec {
12   pname = "keep";
13   version = "2.11";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "sha256-Brwvu/Zevr8sOE3KAwakDDzVMc2VoFxIb1orXAes2U0=";
19   };
21   propagatedBuildInputs = [
22     click
23     requests
24     terminaltables
25     pygithub
26   ];
28   # no tests
29   doCheck = false;
30   pythonImportsCheck = [ "keep" ];
32   meta = with lib; {
33     homepage = "https://github.com/orkohunter/keep";
34     description = "Meta CLI toolkit: Personal shell command keeper and snippets manager";
35     mainProgram = "keep";
36     platforms = platforms.all;
37     license = licenses.mit;
38     maintainers = with maintainers; [ ris ];
39   };