Merge pull request #253006 from figsoda/pysentation

This commit is contained in:
figsoda
2023-09-05 08:58:07 -04:00
committed by GitHub
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "pysentation";
version = "1.0.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "mimseyedi";
repo = "pysentation";
rev = "v${version}";
hash = "sha256-TwHDXWgGWuQVgatBDc1iympnb6dy4xYThLR5MouEZHA=";
};
nativeBuildInputs = [
python3.pkgs.setuptools
python3.pkgs.wheel
];
propagatedBuildInputs = with python3.pkgs; [
click
getkey
rich
];
pythonImportsCheck = [ "pysentation" ];
meta = with lib; {
description = "A CLI for displaying Python presentations";
homepage = "https://github.com/mimseyedi/pysentation";
changelog = "https://github.com/mimseyedi/pysentation/releases/tag/${src.rev}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
mainProgram = "pysentation";
};
}
+2
View File
@@ -12337,6 +12337,8 @@ with pkgs;
pydeps = with python3Packages; toPythonApplication pydeps;
pysentation = callPackage ../applications/misc/pysentation { };
python-launcher = callPackage ../development/tools/misc/python-launcher { };
pytrainer = callPackage ../applications/misc/pytrainer { };