nixpkgs/pkgs/development/python-modules/keep/default.nix

38 lines
722 B
Nix
Raw Normal View History

{ lib
2020-08-31 15:03:14 +01:00
, buildPythonPackage
, fetchPypi
, PyGithub
, terminaltables
, click
, requests
}:
buildPythonPackage rec {
pname = "keep";
2020-11-10 19:38:08 +00:00
version = "2.10";
2020-08-31 15:03:14 +01:00
src = fetchPypi {
inherit pname version;
2020-11-10 19:38:08 +00:00
sha256 = "ce71d14110df197ab5afdbd26a14c0bd266b79671118ae1351835fa192e61d9b";
2020-08-31 15:03:14 +01:00
};
propagatedBuildInputs = [
click
requests
terminaltables
PyGithub
];
# no tests
doCheck = false;
2020-08-31 15:03:14 +01:00
pythonImportsCheck = [ "keep" ];
meta = with lib; {
2020-08-31 15:03:14 +01:00
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 ];
};
}