about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/keep/default.nix
blob: e381feb6dd4efd28164258c3f7269c409bc1a46c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, pygithub
, terminaltables
, click
, requests
}:

buildPythonPackage rec {
  pname = "keep";
  version = "2.10.1";
  format = "setuptools";

  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 ];
  };
}