lol

python3Packages.aiodns: 3.4.0 -> 3.5.0 (#422121)

authored by

Martin Weinelt and committed by
GitHub
22f4a393 8d42f009

+10 -7
+2 -2
pkgs/development/python-modules/aiodns/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "aiodns"; 11 - version = "3.4.0"; 11 + version = "3.5.0"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "saghul"; 16 16 repo = "aiodns"; 17 17 tag = "v${version}"; 18 - hash = "sha256-y3QuMj2y/V6orM+1+cbUCgj0UL8sXQVzLLYXLnBdlio="; 18 + hash = "sha256-qabXwvJzZ4bq0R2Wkb0terZgjnRRt0/ymLcJkxChR6s="; 19 19 }; 20 20 21 21 build-system = [ setuptools ];
+8 -5
pkgs/development/python-modules/pycares/default.nix
··· 7 7 fetchPypi, 8 8 idna, 9 9 pythonOlder, 10 + setuptools, 10 11 tornado, 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "pycares"; 15 - version = "4.8.0"; 16 - format = "setuptools"; 16 + version = "4.9.0"; 17 + pyproject = true; 17 18 18 19 disabled = pythonOlder "3.7"; 19 20 20 21 src = fetchPypi { 21 22 inherit pname version; 22 - hash = "sha256-L8Lr+rlg9lSz488IpzJIaVDamTk6ZX+LRGGK0+0tOcE="; 23 + hash = "sha256-juSE3bI9vsTYjRTtW21ZLBlg0uk8OF1eUrb61WTYI5U="; 23 24 }; 24 25 26 + build-system = [ setuptools ]; 27 + 25 28 buildInputs = [ c-ares ]; 26 29 27 - propagatedBuildInputs = [ 30 + dependencies = [ 28 31 cffi 29 32 idna 30 33 ]; ··· 43 46 meta = with lib; { 44 47 description = "Python interface for c-ares"; 45 48 homepage = "https://github.com/saghul/pycares"; 46 - changelog = "https://github.com/saghul/pycares/releases/tag/pycares-${version}"; 49 + changelog = "https://github.com/saghul/pycares/releases/tag/v${version}"; 47 50 license = licenses.mit; 48 51 maintainers = with maintainers; [ fab ]; 49 52 };