nixpkgs/pkgs/development/python-modules/dnspython/default.nix

23 lines
534 B
Nix
Raw Normal View History

2017-07-08 23:13:57 +00:00
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "dnspython";
2019-02-14 07:37:14 +00:00
version = "1.16.0";
2017-07-08 23:13:57 +00:00
src = fetchPypi {
inherit pname version;
extension = "zip";
2019-02-14 07:37:14 +00:00
sha256 = "36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01";
2017-07-08 23:13:57 +00:00
};
# 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;
};
}