summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/cheat
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2016-11-30 21:05:01 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2016-11-30 21:10:54 +0100
commitfa4212e76340ca2d8b855a00d33aa90c15df7b94 (patch)
tree2cd7a379e8c24a38c04580d97bf08dd65788a966 /pkgs/applications/misc/cheat
parent18757f3a11e93e65d4ac6432103f7c27466ee8b3 (diff)
cheat: 2.1.26 -> 2.1.27
Diffstat (limited to 'pkgs/applications/misc/cheat')
-rw-r--r--pkgs/applications/misc/cheat/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/misc/cheat/default.nix b/pkgs/applications/misc/cheat/default.nix
index 09bc8f25b261..246a50842c66 100644
--- a/pkgs/applications/misc/cheat/default.nix
+++ b/pkgs/applications/misc/cheat/default.nix
@@ -1,15 +1,17 @@
{ python3Packages, fetchurl, lib }:
python3Packages.buildPythonApplication rec {
- version = "2.1.26";
+ version = "2.1.27";
name = "cheat-${version}";
propagatedBuildInputs = with python3Packages; [ docopt pygments ];
src = fetchurl {
url = "mirror://pypi/c/cheat/${name}.tar.gz";
- sha256 = "0yilm9ba6ll9wzh20gj3lg9mnc50q95m6sqmjp2vcghwgipdixpm";
+ sha256 = "1mrrfwd4ivas0alfkhjryxxzf24a4ngk8c6n2zlfb8ziwf7czcqd";
};
+ # no tests available
+ doCheck = false;
meta = {
description = "cheat allows you to create and view interactive cheatsheets on the command-line";