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

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

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

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