lookatme: init at 2.3.2
This commit is contained in:
parent
83259c6814
commit
6f2cabd82c
2 changed files with 59 additions and 0 deletions
57
pkgs/tools/misc/lookatme/default.nix
Normal file
57
pkgs/tools/misc/lookatme/default.nix
Normal file
|
@ -0,0 +1,57 @@
|
|||
{ lib, python3, fetchFromGitHub }:
|
||||
|
||||
let
|
||||
py = python3.override {
|
||||
packageOverrides = self: super: {
|
||||
self = py;
|
||||
# use click 7
|
||||
click = self.callPackage ../../../development/python2-modules/click/default.nix { };
|
||||
# needs pyyaml 5
|
||||
pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec {
|
||||
name = "${oldAttrs.pname}-${version}";
|
||||
version = "5.4.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "yaml";
|
||||
repo = "pyyaml";
|
||||
rev = version;
|
||||
sha256 = "sha256-VUqnlOF/8zSOqh6JoEYOsfQ0P4g+eYqxyFTywgCS7gM=";
|
||||
};
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
PYTHONPATH="tests/lib3:$PYTHONPATH" ${self.python.interpreter} -m test_all
|
||||
runHook postCheck
|
||||
'';
|
||||
});
|
||||
};
|
||||
};
|
||||
in
|
||||
with py.pkgs;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "lookatme";
|
||||
version = "2.3.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-qIZMkgOm5jXmxTFLTqMBhpLBhfCL8xvUxxqpS6NjcVw=";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
pyyaml
|
||||
pygments
|
||||
marshmallow
|
||||
mistune
|
||||
urwid
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An interactive, terminal-based markdown presenter";
|
||||
homepage = "https://github.com/d0c-s4vage/lookatme";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ameer ];
|
||||
};
|
||||
}
|
|
@ -27256,6 +27256,8 @@ with pkgs;
|
|||
inherit (luajitPackages) luafilesystem;
|
||||
};
|
||||
|
||||
lookatme = callPackage ../tools/misc/lookatme {};
|
||||
|
||||
looking-glass-client = callPackage ../applications/virtualization/looking-glass-client { };
|
||||
|
||||
ltc-tools = callPackage ../applications/audio/ltc-tools { };
|
||||
|
|
Loading…
Reference in a new issue