ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / whois / default.nix
blob78f8a0147281279ea41cebd1cc6ebabb0ffe25f0
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , inetutils
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "whois";
10   version = "0.9.17";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "DannyCork";
17     repo = "python-whois";
18     rev = "refs/tags/${version}";
19     sha256 = "sha256-r77M0IxZ72Sl5c6rA7z8EdZ6rYS/oMrdvdt/E/Pw7nQ=";
20   };
22   propagatedBuildInputs = [
23     # whois is needed
24     inetutils
25   ];
27   # tests require network access
28   doCheck = false;
30   pythonImportsCheck = [
31     "whois"
32   ];
34   meta = with lib; {
35     description = "Python module/library for retrieving WHOIS information";
36     homepage = "https://github.com/DannyCork/python-whois/";
37     license = with licenses; [ mit ];
38     maintainers = with maintainers; [ fab ];
39   };