summary refs log tree commit diff
path: root/pkgs/development/python-modules/termstyle/default.nix
blob: 0a1c4e764129cbd89c43f14fe089c48be4576e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
}