about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mozterm/default.nix
blob: 98e8d5b4078cda1f548c45f1e88ae42681d4a307 (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 = "0.1.0";

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "4ebf8bd772d97c0f557184173f0f96cfca0abfc07e1ae975fbcfa76be50b5561";
  };

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