410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
40 lines
867 B
Nix
40 lines
867 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, prompt-toolkit
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "clintermission";
|
|
version = "0.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sebageek";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-HPeO9K91a0MacSUN0SR0lPEWRTQgP/cF1FZaNvZLxAg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
prompt-toolkit
|
|
];
|
|
|
|
# repo contains no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"clintermission"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Non-fullscreen command-line selection menu";
|
|
homepage = "https://github.com/sebageek/clintermission";
|
|
changelog = "https://github.com/sebageek/clintermission/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|