nixpkgs/pkgs/development/python-modules/backports_shutil_get_terminal_size/default.nix
Timo Kaufmann ff8338343b maintainers: create sage team
Maintaining all the packages whose updates might break some aspect of
sage.

For reference:
https://github.com/NixOS/nixpkgs/pull/103810#issuecomment-727536510
2020-11-18 21:27:37 +01:00

36 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, pythonOlder
}:
if !(pythonOlder "3.3") then null else buildPythonPackage {
pname = "backports.shutil_get_terminal_size";
version = "unstable-2016-02-21";
# there have been numerous fixes commited since the initial release.
# Most notably fixing a problem where the backport would always return
# terminal size 0. See https://trac.sagemath.org/ticket/25320#comment:5.
# Unfortunately the maintainer seems inactive and has not responded to
# a request for a new release since 2016:
# https://github.com/chrippa/backports.shutil_get_terminal_size/issues/7
src = fetchFromGitHub {
owner = "chrippa";
repo = "backports.shutil_get_terminal_size";
rev = "159e269450dbf37c3a837f6ea7e628d59acbb96a";
sha256 = "17sgv8vg0xxfdnca45l1mmwwvj29gich5c8kqznnj51kfccch7sg";
};
checkInputs = [
pytest
];
meta = with lib; {
description = "A backport of the get_terminal_size function from Python 3.3s shutil.";
homepage = "https://github.com/chrippa/backports.shutil_get_terminal_size";
license = with licenses; [ mit ];
maintainers = teams.sage.members;
};
}