Merge pull request #288996 from fabaff/urwid-bump

python311Packages.urwid: 2.4.3 -> 2.5.3

authored by Fabian Affolter and committed by GitHub c43f7a4c 6b3865ac

+40 -20
+2 -2
pkgs/development/python-modules/nomadnet/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "nomadnet"; 14 - version = "0.4.5"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "markqvist"; 21 repo = "NomadNet"; 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-+w/Earu76mMJFp8ALvaDEkZOGJqlKbO7jfpW/xxvd1o="; 24 }; 25 26 nativeBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "nomadnet"; 14 + version = "0.4.6"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "markqvist"; 21 repo = "NomadNet"; 22 rev = "refs/tags/${version}"; 23 + hash = "sha256-23TIBSWOYgo7xEilB4raNMbEWIyPFHAh9jsVzh40S8I="; 24 }; 25 26 nativeBuildInputs = [
+9 -2
pkgs/development/python-modules/urwid/default.nix
··· 13 , tornado 14 , trio 15 , twisted 16 }: 17 18 buildPythonPackage rec { 19 pname = "urwid"; 20 - version = "2.4.3"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "urwid"; 27 repo = "urwid"; 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-raDsUZaXBC4s/48KNH8Thrpm8Bq8wj9+Rahk+LkxcDo="; 30 }; 31 32 postPatch = '' ··· 36 nativeBuildInputs = [ 37 setuptools 38 setuptools-scm 39 ]; 40 41 passthru.optional-dependencies = {
··· 13 , tornado 14 , trio 15 , twisted 16 + , typing-extensions 17 + , wcwidth 18 }: 19 20 buildPythonPackage rec { 21 pname = "urwid"; 22 + version = "2.6.1"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "urwid"; 29 repo = "urwid"; 30 rev = "refs/tags/${version}"; 31 + hash = "sha256-D/ZxN9hVVmAgHGdLGrSD2VAMSd4II8z6GzO1VDuyw9M="; 32 }; 33 34 postPatch = '' ··· 38 nativeBuildInputs = [ 39 setuptools 40 setuptools-scm 41 + ]; 42 + 43 + propagatedBuildInputs = [ 44 + typing-extensions 45 + wcwidth 46 ]; 47 48 passthru.optional-dependencies = {
+8 -6
pkgs/development/python-modules/urwidgets/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , pythonOlder 4 , fetchFromGitHub 5 , setuptools 6 , urwid 7 - , wheel 8 }: 9 10 buildPythonPackage rec { 11 pname = "urwidgets"; 12 - version = "0.1.1"; 13 pyproject = true; 14 disabled = pythonOlder "3.7"; 15 16 src = fetchFromGitHub { 17 owner = "AnonymouX47"; 18 repo = "urwidgets"; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-0aZLL0NutptPkuLHv3bTzR1/SNqLgMdUYWET6mLE0IU="; 21 }; 22 23 nativeBuildInputs = [ 24 setuptools 25 - wheel 26 ]; 27 28 propagatedBuildInputs = [ 29 urwid 30 ]; 31 32 - pythonImportsCheck = [ "urwidgets" ]; 33 34 meta = with lib; { 35 description = "A collection of widgets for urwid"; 36 homepage = "https://github.com/AnonymouX47/urwidgets"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ huyngo ]; 39 };
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , pythonOlder 5 , setuptools 6 , urwid 7 }: 8 9 buildPythonPackage rec { 10 pname = "urwidgets"; 11 + version = "0.2.0"; 12 pyproject = true; 13 + 14 disabled = pythonOlder "3.7"; 15 16 src = fetchFromGitHub { 17 owner = "AnonymouX47"; 18 repo = "urwidgets"; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-ultlfNeCGFTqKaMeXu0+NihkN5/6NtMewk33YfIzhu8="; 21 }; 22 23 nativeBuildInputs = [ 24 setuptools 25 ]; 26 27 propagatedBuildInputs = [ 28 urwid 29 ]; 30 31 + pythonImportsCheck = [ 32 + "urwidgets" 33 + ]; 34 35 meta = with lib; { 36 description = "A collection of widgets for urwid"; 37 homepage = "https://github.com/AnonymouX47/urwidgets"; 38 + changelog = "https://github.com/AnonymouX47/urwidgets/releases/tag/v${version}"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ huyngo ]; 41 };
+21 -10
pkgs/development/python-modules/urwidtrees/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , glibcLocales 5 - , urwid 6 , fetchpatch 7 }: 8 9 buildPythonPackage rec { 10 pname = "urwidtrees"; 11 - format = "setuptools"; 12 version = "1.0.3"; 13 14 src = fetchFromGitHub { 15 owner = "pazz"; 16 repo = "urwidtrees"; 17 - rev = version; 18 hash = "sha256-yGSjwagCd5TiwEFtF6ZhDuVqj4PTa5pVXhs8ebr2O/g="; 19 }; 20 21 - propagatedBuildInputs = [ urwid ]; 22 - 23 patches = [ 24 (fetchpatch { 25 url = "https://github.com/pazz/urwidtrees/commit/ed39dbc4fc67b0e0249bf108116a88cd18543aa9.patch"; ··· 27 }) 28 ]; 29 30 - nativeCheckInputs = [ glibcLocales ]; 31 - LC_ALL="en_US.UTF-8"; 32 33 meta = with lib; { 34 description = "Tree widgets for urwid"; 35 homepage = "https://github.com/pazz/urwidtrees"; 36 - license = licenses.gpl3; 37 }; 38 - 39 }
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , fetchpatch 5 + , setuptools 6 + , urwid 7 }: 8 9 buildPythonPackage rec { 10 pname = "urwidtrees"; 11 version = "1.0.3"; 12 + pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "pazz"; 16 repo = "urwidtrees"; 17 + rev = "refs/tags/${version}"; 18 hash = "sha256-yGSjwagCd5TiwEFtF6ZhDuVqj4PTa5pVXhs8ebr2O/g="; 19 }; 20 21 patches = [ 22 (fetchpatch { 23 url = "https://github.com/pazz/urwidtrees/commit/ed39dbc4fc67b0e0249bf108116a88cd18543aa9.patch"; ··· 25 }) 26 ]; 27 28 + nativeBuildInputs = [ 29 + setuptools 30 + ]; 31 + 32 + propagatedBuildInputs = [ 33 + urwid 34 + ]; 35 + 36 + # Module has no tests 37 + doCheck = false; 38 + 39 + pythonImportsCheck = [ 40 + "urwidtrees" 41 + ]; 42 43 meta = with lib; { 44 description = "Tree widgets for urwid"; 45 homepage = "https://github.com/pazz/urwidtrees"; 46 + changelog = "https://github.com/pazz/urwidtrees/releases/tag/${version}"; 47 + license = licenses.gpl3Plus; 48 + maintainers = with maintainers; [ ]; 49 }; 50 }