lol

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

python310Packages.curtsies: 0.4.0 -> 0.4.1

authored by

Fabian Affolter and committed by
GitHub
46fbee91 a756d6e0

+13 -10
+13 -10
pkgs/development/python-modules/curtsies/default.nix
··· 1 - { stdenv 2 - , lib 1 + { lib 2 + , stdenv 3 + , backports-cached-property 4 + , blessed 3 5 , buildPythonPackage 6 + , cwcwidth 4 7 , fetchPypi 5 - , pythonOlder 6 - , blessed 7 - , backports-cached-property 8 8 , pyte 9 9 , pytestCheckHook 10 - , cwcwidth 10 + , pythonOlder 11 11 }: 12 12 13 13 buildPythonPackage rec { 14 14 pname = "curtsies"; 15 - version = "0.4.0"; 15 + version = "0.4.1"; 16 16 format = "pyproject"; 17 17 18 + disabled = pythonOlder "3.7"; 19 + 18 20 src = fetchPypi { 19 21 inherit pname version; 20 - hash = "sha256-yynvzjP+85WinvpWjyf1kTF4Rp+zqrEUCA1spiZBQv4="; 22 + hash = "sha256-YtEPNJxVOEUwZVan8mY86WsJjYxbvEDa7Hpu7d4WIrA="; 21 23 }; 22 24 23 25 propagatedBuildInputs = [ 24 - backports-cached-property 25 26 blessed 26 27 cwcwidth 28 + ] ++ lib.optionals (pythonOlder "3.8") [ 29 + backports-cached-property 27 30 ]; 28 31 29 32 checkInputs = [ ··· 32 35 ]; 33 36 34 37 meta = with lib; { 35 - broken = stdenv.isDarwin; 36 38 description = "Curses-like terminal wrapper, with colored strings!"; 37 39 homepage = "https://github.com/bpython/curtsies"; 38 40 license = licenses.mit; 39 41 maintainers = with maintainers; [ flokli ]; 42 + broken = stdenv.isDarwin; 40 43 }; 41 44 }