depot/third_party/nixpkgs/pkgs/development/python-modules/curtsies/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

44 lines
837 B
Nix

{ lib
, stdenv
, backports-cached-property
, blessed
, buildPythonPackage
, cwcwidth
, fetchPypi
, pyte
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "curtsies";
version = "0.4.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-YtEPNJxVOEUwZVan8mY86WsJjYxbvEDa7Hpu7d4WIrA=";
};
propagatedBuildInputs = [
blessed
cwcwidth
] ++ lib.optionals (pythonOlder "3.8") [
backports-cached-property
];
nativeCheckInputs = [
pyte
pytestCheckHook
];
meta = with lib; {
description = "Curses-like terminal wrapper, with colored strings!";
homepage = "https://github.com/bpython/curtsies";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
broken = stdenv.isDarwin;
};
}