3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.dnspython: update license

This commit is contained in:
Fabian Affolter 2021-04-22 12:37:48 +02:00 committed by github-actions[bot]
parent 093b406afc
commit 4e45ad3574
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 ];
};
}