clintermission: init at 0.2.0

This commit is contained in:
Sandro Jäckel 2020-10-16 21:05:26 +02:00
parent 90fd589286
commit 29dcb8276c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, buildPythonApplication, fetchFromGitHub, isPy3k, prompt_toolkit }:
buildPythonApplication rec {
pname = "clintermission";
version = "0.2.0";
src = fetchFromGitHub {
owner = "sebageek";
repo = pname;
rev = "v${version}";
sha256 = "09wl0rpw6c9hab51rs957z64b0v9j4fcbqbn726wnapf4z5w6yxv";
};
propagatedBuildInputs = [ prompt_toolkit ];
disabled = !isPy3k;
# repo contains no tests
doCheck = false;
pythonImportsCheck = [ "clintermission" ];
meta = with lib; {
description = "Non-fullscreen command-line selection menu";
homepage = "https://github.com/sebageek/clintermission";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -1208,6 +1208,8 @@ in {
clint = callPackage ../development/python-modules/clint { }; clint = callPackage ../development/python-modules/clint { };
clintermission = callPackage ../development/python-modules/clintermission { };
clize = callPackage ../development/python-modules/clize { }; clize = callPackage ../development/python-modules/clize { };
clldutils = callPackage ../development/python-modules/clldutils { }; clldutils = callPackage ../development/python-modules/clldutils { };