Merge pull request #158323 from AmeerTaweel/pkgs-lookatme
lookatme: init at 2.3.2
This commit is contained in:
commit
0e1716410e
3 changed files with 65 additions and 0 deletions
|
@ -13824,4 +13824,10 @@
|
|||
fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE";
|
||||
}];
|
||||
};
|
||||
ameer = {
|
||||
name = "Ameer Taweel";
|
||||
email = "ameertaweel2002@gmail.com";
|
||||
github = "AmeerTaweel";
|
||||
githubId = 20538273;
|
||||
};
|
||||
}
|
||||
|
|
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 ];
|
||||
};
|
||||
}
|
|
@ -27263,6 +27263,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