pythonPackages.termstyle: 0.1.10 -> 0.1.11

This commit is contained in:
Robert Schütz
2018-02-19 19:22:49 +01:00
parent 84fbf2a410
commit 09ae15ea50
2 changed files with 21 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "termstyle";
version = "0.1.11";
src = fetchPypi {
inherit pname version;
sha256 = "ef74b83698ea014112040cf32b1a093c1ab3d91c4dd18ecc03ec178fd99c9f9f";
};
# Only manual tests
doCheck = false;
meta = with lib; {
description = "Console colouring for python";
homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10";
license = licenses.bsdOriginal;
};
}