mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
python3Packages.dnspython3: init at 1.12.0
This commit is contained in:
parent
7c339ff10e
commit
2caa3b7d50
|
@ -2800,6 +2800,25 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
dnspython3 = buildPythonPackage rec {
|
||||
name = "dnspython3-${version}";
|
||||
version = "1.12.0";
|
||||
|
||||
disabled = (!isPy3k);
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/d/dnspython3/${name}.zip";
|
||||
sha256 = "138wxj702vx6zni9g2y8dbgbpin95v6hk23rh2kwfr3q4130jqz9";
|
||||
};
|
||||
|
||||
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 = licenses.free;
|
||||
};
|
||||
};
|
||||
|
||||
docker = buildPythonPackage rec {
|
||||
name = "docker-py-1.1.0";
|
||||
|
||||
|
|
Loading…
Reference in a new issue