depot/third_party/nixpkgs/pkgs/development/python-modules/curtsies/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

41 lines
755 B
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, blessed
, backports-cached-property
, pyte
, pytestCheckHook
, cwcwidth
}:
buildPythonPackage rec {
pname = "curtsies";
version = "0.4.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-yynvzjP+85WinvpWjyf1kTF4Rp+zqrEUCA1spiZBQv4=";
};
propagatedBuildInputs = [
backports-cached-property
blessed
cwcwidth
];
checkInputs = [
pyte
pytestCheckHook
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Curses-like terminal wrapper, with colored strings!";
homepage = "https://github.com/bpython/curtsies";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}