summary refs log tree commit diff
path: root/pkgs/development/python-modules/mozterm/default.nix
blob: 358b21893fa646c66a44f34ba01795b1c744b0e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
  pname = "mozterm";
  version = "1.0.0";

  # name 'unicode' is not defined
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "b1e91acec188de07c704dbb7b0100a7be5c1e06567b3beb67f6ea11d00a483a4";
  };

  meta = with lib; {
    description = "Terminal abstractions built around the blessings module";
    license = licenses.mpl20;
  };
}