Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.asyncwhois: 1.1.4 -> 1.1.5

Diff: https://github.com/pogzyb/asyncwhois/compare/refs/tags/v1.1.5...v1.1.5

Changelog: https://github.com/pogzyb/asyncwhois/releases/tag/v1.1.5

authored by Fabian Affolter and committed by Martin Weinelt 23c9271f b41a2fe2

+4 -9
+4 -9
pkgs/development/python-modules/asyncwhois/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pytest-asyncio, 6 pytest-mock, 7 pytestCheckHook, 8 python-socks, 9 pythonOlder, 10 - setuptools, 11 tldextract, 12 whodap, 13 }: ··· 26 hash = "sha256-y5JmAbrk9qJeNYejNcz5nI5bghaetUw1xkD8qgwOkao="; 27 }; 28 29 - postPatch = '' 30 - substituteInPlace setup.py \ 31 - --replace-fail "python-socks[asyncio]" "python-socks" 32 - ''; 33 - 34 - build-system = [ setuptools ]; 35 36 dependencies = [ 37 python-socks 38 tldextract 39 whodap 40 - ]; 41 42 nativeCheckInputs = [ 43 pytest-asyncio ··· 68 description = "Python module for retrieving WHOIS information"; 69 homepage = "https://github.com/pogzyb/asyncwhois"; 70 changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${version}"; 71 - license = with licenses; [ asl20 ]; 72 maintainers = with maintainers; [ fab ]; 73 }; 74 }
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + hatchling, 6 pytest-asyncio, 7 pytest-mock, 8 pytestCheckHook, 9 python-socks, 10 pythonOlder, 11 tldextract, 12 whodap, 13 }: ··· 26 hash = "sha256-y5JmAbrk9qJeNYejNcz5nI5bghaetUw1xkD8qgwOkao="; 27 }; 28 29 + build-system = [ hatchling ]; 30 31 dependencies = [ 32 python-socks 33 tldextract 34 whodap 35 + ] ++ python-socks.optional-dependencies.asyncio; 36 37 nativeCheckInputs = [ 38 pytest-asyncio ··· 63 description = "Python module for retrieving WHOIS information"; 64 homepage = "https://github.com/pogzyb/asyncwhois"; 65 changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${version}"; 66 + license = licenses.asl20; 67 maintainers = with maintainers; [ fab ]; 68 }; 69 }