Merge pull request #274960 from syedmoizurrehman/add-simple-term-menu
python3Packages.simple-term-menu: init at 1.6.4
This commit is contained in:
commit
1f7530f9d8
3 changed files with 42 additions and 0 deletions
|
@ -17160,6 +17160,12 @@
|
|||
fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC";
|
||||
}];
|
||||
};
|
||||
smrehman = {
|
||||
name = "Syed Moiz Ur Rehman";
|
||||
email = "smrehman@proton.me";
|
||||
github = "syedmoizurrehman";
|
||||
githubId = 17818950;
|
||||
};
|
||||
sna = {
|
||||
email = "abouzahra.9@wright.edu";
|
||||
github = "S-NA";
|
||||
|
|
34
pkgs/development/python-modules/simple-term-menu/default.nix
Normal file
34
pkgs/development/python-modules/simple-term-menu/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "simple-term-menu";
|
||||
version = "1.6.4";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-vpxdvY3xKkBLFM2Oldb8AtWMYOJVX2Xd3kF3fEh/s7k=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [ "simple_term_menu" ];
|
||||
|
||||
# no unit tests in the upstream
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python package which creates simple interactive menus on the command line";
|
||||
homepage = "https://github.com/IngoMeyer441/simple-term-menu";
|
||||
license = licenses.mit;
|
||||
changelog = "https://github.com/IngoMeyer441/simple-term-menu/releases/tag/v${version}";
|
||||
maintainers = with maintainers; [ smrehman ];
|
||||
};
|
||||
}
|
|
@ -13122,6 +13122,8 @@ self: super: with self; {
|
|||
|
||||
simber = callPackage ../development/python-modules/simber { };
|
||||
|
||||
simple-term-menu = callPackage ../development/python-modules/simple-term-menu { };
|
||||
|
||||
simpleaudio = callPackage ../development/python-modules/simpleaudio { };
|
||||
|
||||
simplebayes = callPackage ../development/python-modules/simplebayes { };
|
||||
|
|
Loading…
Reference in a new issue