2016-09-13 12:36:00 +02:00
|
|
|
{ python3Packages, fetchurl, lib }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-03-01 10:17:43 +01:00
|
|
|
version = "2.2.0";
|
2016-09-13 12:36:00 +02:00
|
|
|
name = "cheat-${version}";
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ docopt pygments ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/c/cheat/${name}.tar.gz";
|
2017-03-01 10:17:43 +01:00
|
|
|
sha256 = "16pg1bgyfjvzpm2rbi411ckf3gljg9v1vzd5qhp23g69ch6yr138";
|
2016-09-13 12:36:00 +02:00
|
|
|
};
|
2016-11-30 21:05:01 +01:00
|
|
|
# no tests available
|
|
|
|
doCheck = false;
|
2016-09-13 12:36:00 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "cheat allows you to create and view interactive cheatsheets on the command-line";
|
|
|
|
maintainers = with lib.maintainers; [ mic92 ];
|
|
|
|
license = with lib.licenses; [gpl3 mit];
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/chrisallenlane/cheat;
|
2016-09-13 12:36:00 +02:00
|
|
|
};
|
|
|
|
}
|