summary refs log tree commit diff
path: root/pkgs/development/python-modules/dns/default.nix
blob: 0548c5a1098efe418a8fdcc7cdf516f9e2396046 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPythonPackage, fetchPypi, lib }:

buildPythonPackage rec {
  pname = "dnspython";
  version = "1.15.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "0z5d9vwf211v54bybrhm3qpxclys4dfdfsp7lk2hvf57yzhn7xa0";
  };

  # needs networking for some tests
  doCheck = false;

  meta = {
    description = "A DNS toolkit for Python 3.x";
    homepage = http://www.dnspython.org;
    # BSD-like, check http://www.dnspython.org/LICENSE for details
    license = lib.licenses.free;
  };
}