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

python310Packages.curtsies: 0.4.1 -> 0.4.2
This commit is contained in:
Nick Cao 2023-08-28 08:38:43 +08:00 committed by GitHub
commit d96cd0825a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "curtsies";
version = "0.4.1";
version = "0.4.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-YtEPNJxVOEUwZVan8mY86WsJjYxbvEDa7Hpu7d4WIrA=";
hash = "sha256-br4zIVvXyShRpQYEnHIMykz1wZLBZlwdepigTEcCdg4=";
};
propagatedBuildInputs = [
@ -37,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Curses-like terminal wrapper, with colored strings!";
homepage = "https://github.com/bpython/curtsies";
changelog = "https://github.com/bpython/curtsies/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
broken = stdenv.isDarwin;