about summary refs log tree commit diff
path: root/pkgs/development/python-modules/backports_shutil_get_terminal_size/default.nix
blob: 7f4faa8a8b471c702b91f1ec42c91d044523a3d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pythonOlder
}:

if !(pythonOlder "3.3") then null else buildPythonPackage rec {
  pname = "backports.shutil_get_terminal_size";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "713e7a8228ae80341c70586d1cc0a8caa5207346927e23d09dcbcaf18eadec80";
  };

  checkInputs = [
    pytest
  ];

  meta = {
    description = "A backport of the get_terminal_size function from Python 3.3’s shutil.";
    homepage = https://github.com/chrippa/backports.shutil_get_terminal_size;
    license = with lib.licenses; [ mit ];
  };
}