pysensation: init at 1.0.0

https://github.com/mimseyedi/pysentation
This commit is contained in:
figsoda 2023-09-02 18:32:25 -04:00
parent 3f9e803102
commit e66d494042
2 changed files with 41 additions and 0 deletions
pkgs
applications/misc/pysentation
top-level

View file

@ -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";
};
}

View file

@ -12327,6 +12327,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 { };