ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / termstyle / default.nix
blob0a1c4e764129cbd89c43f14fe089c48be4576e1e
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "termstyle";
5   version = "0.1.11";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "ef74b83698ea014112040cf32b1a093c1ab3d91c4dd18ecc03ec178fd99c9f9f";
10   };
12   # Only manual tests
13   doCheck = false;
15   meta = with lib; {
16     description = "Console colouring for python";
17     homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10";
18     license = licenses.bsdOriginal;
19   };