blob: dbe1387a9ee856b5f7bec4e766e6d8e4e3da08fe (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
prompt-toolkit,
}:
buildPythonPackage rec {
pname = "clintermission";
version = "0.3.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "sebageek";
repo = "clintermission";
tag = "v${version}";
hash = "sha256-e7C9IDr+mhVSfU8lMywjX1BYwFo/qegPNzabak7UPcY=";
};
propagatedBuildInputs = [ prompt-toolkit ];
# repo contains no tests
doCheck = false;
pythonImportsCheck = [ "clintermission" ];
meta = {
description = "Non-fullscreen command-line selection menu";
homepage = "https://github.com/sebageek/clintermission";
changelog = "https://github.com/sebageek/clintermission/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|