Merge pull request #120193 from fabaff/license-dnspython

This commit is contained in:
Sandro 2021-04-23 03:13:01 +02:00 committed by GitHub
commit d239bc3643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 10 deletions

View file

@ -1,4 +1,8 @@
{ buildPythonPackage, fetchPypi, lib, pythonOlder }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "dnspython";
@ -12,11 +16,11 @@ buildPythonPackage rec {
# needs networking for some tests
doCheck = false;
pythonImportsCheck = [ "dns" ];
meta = {
description = "A DNS toolkit for Python 3.x";
meta = with lib; {
description = "A DNS toolkit for Python";
homepage = "http://www.dnspython.org";
# BSD-like, check https://www.dnspython.org/LICENSE for details
license = lib.licenses.free;
license = with licenses; [ isc ];
};
}

View file

@ -1,4 +1,8 @@
{ buildPythonPackage, fetchPypi, lib, pythonOlder }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "dnspython";
@ -13,11 +17,11 @@ buildPythonPackage rec {
# needs networking for some tests
doCheck = false;
pythonImportsCheck = [ "dns" ];
meta = {
description = "A DNS toolkit for Python 3.x";
meta = with lib; {
description = "A DNS toolkit for Python";
homepage = "http://www.dnspython.org";
# BSD-like, check https://www.dnspython.org/LICENSE for details
license = lib.licenses.free;
license = with licenses; [ isc ];
};
}