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

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

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

  propagatedBuildInputs = [six];

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

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