Merge pull request #208581 from r-ryantm/auto-update/python3.10-python-arango

python310Packages.python-arango: 7.5.3 -> 7.5.4

authored by

markuskowa and committed by
GitHub
6786f7e9 95ad07f9

+10 -6
+10 -6
pkgs/development/python-modules/python-arango/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "python-arango"; 25 - version = "7.5.3"; 26 disabled = pythonOlder "3.7"; 27 - format = "setuptools"; 28 29 src = fetchFromGitHub { 30 owner = "ArangoDB-Community"; 31 repo = "python-arango"; 32 - rev = version; 33 - sha256 = "0qb2yp05z8dmgsyyxqrl3q0a60jaiih96zhxmqrn2yf7as45n07j"; 34 }; 35 36 propagatedBuildInputs = [ ··· 127 "test_replication_applier" 128 ]; 129 130 - pythonImportsCheck = [ "arango" ]; 131 132 meta = with lib; { 133 description = "Python Driver for ArangoDB"; 134 homepage = "https://github.com/ArangoDB-Community/python-arango"; 135 license = licenses.mit; 136 - maintainers = [ maintainers.jsoo1 ]; 137 }; 138 }
··· 22 23 buildPythonPackage rec { 24 pname = "python-arango"; 25 + version = "7.5.4"; 26 + format = "setuptools"; 27 + 28 disabled = pythonOlder "3.7"; 29 30 src = fetchFromGitHub { 31 owner = "ArangoDB-Community"; 32 repo = "python-arango"; 33 + rev = "refs/tags/${version}"; 34 + hash = "sha256-b3UZuH2hpulRSThReBkDwh0MLJmc95HeWInmmMAl4g0="; 35 }; 36 37 propagatedBuildInputs = [ ··· 128 "test_replication_applier" 129 ]; 130 131 + pythonImportsCheck = [ 132 + "arango" 133 + ]; 134 135 meta = with lib; { 136 description = "Python Driver for ArangoDB"; 137 homepage = "https://github.com/ArangoDB-Community/python-arango"; 138 + changelog = "https://github.com/ArangoDB-Community/python-arango/releases/tag/${version}"; 139 license = licenses.mit; 140 + maintainers = with maintainers; [ jsoo1 ]; 141 }; 142 }