Skip to content

Commit fa4212e

Browse files
committedNov 30, 2016
cheat: 2.1.26 -> 2.1.27
1 parent 18757f3 commit fa4212e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎pkgs/applications/misc/cheat/default.nix

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{ python3Packages, fetchurl, lib }:
22

33
python3Packages.buildPythonApplication rec {
4-
version = "2.1.26";
4+
version = "2.1.27";
55
name = "cheat-${version}";
66

77
propagatedBuildInputs = with python3Packages; [ docopt pygments ];
88

99
src = fetchurl {
1010
url = "mirror://pypi/c/cheat/${name}.tar.gz";
11-
sha256 = "0yilm9ba6ll9wzh20gj3lg9mnc50q95m6sqmjp2vcghwgipdixpm";
11+
sha256 = "1mrrfwd4ivas0alfkhjryxxzf24a4ngk8c6n2zlfb8ziwf7czcqd";
1212
};
13+
# no tests available
14+
doCheck = false;
1315

1416
meta = {
1517
description = "cheat allows you to create and view interactive cheatsheets on the command-line";

0 commit comments

Comments
 (0)
Please sign in to comment.