5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
37 lines
828 B
Nix
37 lines
828 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
prompt-toolkit,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "clintermission";
|
|
version = "0.3.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sebageek";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-e7C9IDr+mhVSfU8lMywjX1BYwFo/qegPNzabak7UPcY=";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|