cheat: 2.2.0 -> 2.2.1

This commit is contained in:
Jörg Thalheim 2017-09-12 09:37:57 +01:00
parent e9040c5161
commit 7f2f427e8f

View File

@ -1,22 +1,24 @@
{ python3Packages, fetchurl, lib }: { stdenv, python3Packages, fetchurl }:
python3Packages.buildPythonApplication rec { with python3Packages;
version = "2.2.0"; buildPythonApplication rec {
name = "cheat-${version}"; name = "${pname}-${version}";
pname = "cheat";
version = "2.2.1";
propagatedBuildInputs = with python3Packages; [ docopt pygments ]; propagatedBuildInputs = with python3Packages; [ docopt pygments ];
src = fetchurl { src = fetchPypi {
url = "mirror://pypi/c/cheat/${name}.tar.gz"; inherit pname version;
sha256 = "16pg1bgyfjvzpm2rbi411ckf3gljg9v1vzd5qhp23g69ch6yr138"; sha256 = "0w4k1h02p2gjv5wcr1c7r0ynb7v50qajx4hpyxz0ndh96f6x30pl";
}; };
# no tests available # no tests available
doCheck = false; doCheck = false;
meta = { meta = with stdenv.lib; {
description = "cheat allows you to create and view interactive cheatsheets on the command-line"; description = "cheat allows you to create and view interactive cheatsheets on the command-line";
maintainers = with lib.maintainers; [ mic92 ]; maintainers = with maintainers; [ mic92 ];
license = with lib.licenses; [gpl3 mit]; license = with licenses; [gpl3 mit];
homepage = https://github.com/chrisallenlane/cheat; homepage = https://github.com/chrisallenlane/cheat;
}; };
} }