lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.whodap: init at 0.1.2

+50
+48
pkgs/development/python-modules/whodap/default.nix
··· 1 + { lib 2 + , asynctest 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pytestCheckHook 6 + , pythonOlder 7 + , async_generator 8 + , httpx 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "whodap"; 13 + version = "0.1.2"; 14 + 15 + disabled = pythonOlder "3.6"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "pogzyb"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "1map5m9i1hi4wb9mpp7hq89n8x9bgsi7gclqfixgqhpi5v5gybqc"; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + httpx 26 + ] ++ lib.optionals (pythonOlder "3.7") [ 27 + async_generator 28 + ]; 29 + 30 + checkInputs = [ 31 + asynctest 32 + pytestCheckHook 33 + ]; 34 + 35 + disabledTestPaths = [ 36 + # Requires network access 37 + "tests/test_client.py" 38 + ]; 39 + 40 + pythonImportsCheck = [ "whodap" ]; 41 + 42 + meta = with lib; { 43 + description = "Python RDAP utility for querying and parsing information about domain names"; 44 + homepage = "https://github.com/pogzyb/whodap"; 45 + license = with licenses; [ mit ]; 46 + maintainers = with maintainers; [ fab ]; 47 + }; 48 + }
+2
pkgs/top-level/python-packages.nix
··· 9646 9646 9647 9647 whitenoise = callPackage ../development/python-modules/whitenoise { }; 9648 9648 9649 + whodap = callPackage ../development/python-modules/whodap { }; 9650 + 9649 9651 whois = callPackage ../development/python-modules/whois { }; 9650 9652 9651 9653 whoosh = callPackage ../development/python-modules/whoosh { };