nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #204962 from fabaff/aiosmb-bump

python310Packages.asysocks: 0.2.2 -> 0.2.3, python310Packages.aiosmb: 0.4.3 -> 0.4.4

authored by

Fabian Affolter and committed by
GitHub
be187cd6 61286ffe

+6 -4
+3 -2
pkgs/development/python-modules/aiosmb/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "aiosmb"; 19 - version = "0.4.3"; 19 + version = "0.4.4"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.7"; 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - hash = "sha256-jJVXGBK8wWXEGvCzOTicHUh9jH35d1ARIxkLwn/ctjM="; 26 + hash = "sha256-IGIEmM9eZ5T+op3ctGr72oy/cU48+OHaFJaZ8DRTY38="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [ ··· 49 49 meta = with lib; { 50 50 description = "Python SMB library"; 51 51 homepage = "https://github.com/skelsec/aiosmb"; 52 + changelog = "https://github.com/skelsec/aiosmb/releases/tag/${version}"; 52 53 license = with licenses; [ mit ]; 53 54 maintainers = with maintainers; [ fab ]; 54 55 };
+3 -2
pkgs/development/python-modules/asysocks/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "asysocks"; 10 - version = "0.2.2"; 10 + version = "0.2.3"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "sha256-rhqML/w8Hp8xZogjc2ZD+Y9C9c/w1e4X7WNoFaLz9Ps="; 17 + hash = "sha256-JHGkQmxt/29GRnVS/GLU1g5Yc+q6voKNOh3n3LfcfcY="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ ··· 31 31 meta = with lib; { 32 32 description = "Python Socks4/5 client and server library"; 33 33 homepage = "https://github.com/skelsec/asysocks"; 34 + changelog = "https://github.com/skelsec/asysocks/releases/tag/${version}"; 34 35 license = with licenses; [ mit ]; 35 36 maintainers = with maintainers; [ fab ]; 36 37 };