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