lol

Merge pull request #154858 from 0xbe7a/rich-11

authored by

Sandro and committed by
GitHub
bed1dbe5 e4c6a6c6

+10 -22
+2 -2
pkgs/development/python-modules/rich/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "rich"; 16 - version = "10.16.2"; 16 + version = "11.0.0"; 17 17 format = "pyproject"; 18 18 disabled = pythonOlder "3.6"; 19 19 ··· 21 21 owner = "willmcgugan"; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-SVenprbWq+ucQPAM1e9sNVYWbGAeo7qdEBy+cvqAMK8="; 24 + sha256 = "0vkwar22rv1j6a3kqj3c016j0vnnha0kwi79fkd90ib1n501m7rn"; 25 25 }; 26 26 27 27 nativeBuildInputs = [ poetry-core ];
+2 -1
pkgs/development/python-modules/surepy/default.nix
··· 33 33 postPatch = '' 34 34 substituteInPlace pyproject.toml \ 35 35 --replace 'aiohttp = {extras = ["speedups"], version = "^3.7.4"}' 'aiohttp = {extras = ["speedups"], version = ">=3.7.4"}' \ 36 - --replace 'async-timeout = "^3.0.1"' 'async-timeout = ">=3.0.1"' 36 + --replace 'async-timeout = "^3.0.1"' 'async-timeout = ">=3.0.1"' \ 37 + --replace 'rich = "^10.1.0"' 'rich = ">=10.1.0"' 37 38 ''; 38 39 39 40 nativeBuildInputs = [
+6 -3
pkgs/development/python-modules/treex/default.nix
··· 27 27 sha256 = "1hl3wj71c7cp7jzkhyjy7xgs2vc8c89icq0bgfr49y4pwv69n43m"; 28 28 }; 29 29 30 - patches = [ 31 - ./relax-deps.patch 32 - ]; 30 + postPatch = '' 31 + substituteInPlace pyproject.toml \ 32 + --replace 'rich = "^10.7.0"' 'rich = ">=10.7.0"' \ 33 + --replace 'PyYAML = "^5.4.1"' 'PyYAML = ">=5.4.1"' \ 34 + --replace 'optax = "^0.0.9"' 'optax = ">=0.0.9"' 35 + ''; 33 36 34 37 nativeBuildInputs = [ 35 38 poetry-core
-16
pkgs/development/python-modules/treex/relax-deps.patch
··· 1 - diff --git a/pyproject.toml b/pyproject.toml 2 - index f0ff8a0..56787ca 100644 3 - --- a/pyproject.toml 4 - +++ b/pyproject.toml 5 - @@ -16,9 +16,9 @@ secondary = true 6 - [tool.poetry.dependencies] 7 - python = "^3.7" 8 - flax = "^0.3.4" 9 - -PyYAML = "^5.4.1" 10 - +PyYAML = ">=5.4.1" 11 - rich = "^10.7.0" 12 - -optax = "^0.0.9" 13 - +optax = ">=0.0.9" 14 - einops = "^0.3.2" 15 - treeo = "^0.0.9" 16 - # treeo = { path = "../treeo", develop = true }