Merge pull request #194835 from r-ryantm/auto-update/python310Packages.curtsies

python310Packages.curtsies: 0.4.0 -> 0.4.1
This commit is contained in:
Fabian Affolter 2022-10-07 09:26:09 +02:00 committed by GitHub
commit 46fbee91fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,29 +1,32 @@
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, blessed
{ lib
, stdenv
, backports-cached-property
, blessed
, buildPythonPackage
, cwcwidth
, fetchPypi
, pyte
, pytestCheckHook
, cwcwidth
, pythonOlder
}:
buildPythonPackage rec {
pname = "curtsies";
version = "0.4.0";
version = "0.4.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-yynvzjP+85WinvpWjyf1kTF4Rp+zqrEUCA1spiZBQv4=";
hash = "sha256-YtEPNJxVOEUwZVan8mY86WsJjYxbvEDa7Hpu7d4WIrA=";
};
propagatedBuildInputs = [
backports-cached-property
blessed
cwcwidth
] ++ lib.optionals (pythonOlder "3.8") [
backports-cached-property
];
checkInputs = [
@ -32,10 +35,10 @@ buildPythonPackage rec {
];
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 ];
broken = stdenv.isDarwin;
};
}