linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-whois / default.nix
blobc4d163100ca98f81bf8687123c208208b8d1b356
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , future
5 , nose
6 , pytestCheckHook
7 , simplejson
8 }:
10 buildPythonPackage rec {
11   pname = "python-whois";
12   version = "0.7.3";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "05jaxbnlw5wck0hl124py364jqrx7a4mmv0hy3d2jzvmp0012sk5";
17   };
19   propagatedBuildInputs = [ future ];
21   checkInputs = [
22     nose
23     pytestCheckHook
24     simplejson
25   ];
27   # Exclude tests that require network access
28   disabledTests = [
29     "test_dk_parse"
30     "test_ipv4"
31     "test_ipv6"
32   ];
33   pythonImportsCheck = [ "whois" ];
35   meta = with lib; {
36     description = "Python module to produce parsed WHOIS data";
37     homepage = "https://github.com/richardpenman/whois";
38     license = with licenses; [ mit ];
39     maintainers = with maintainers; [ fab ];
40   };