Merge pull request #120193 from fabaff/license-dnspython
This commit is contained in:
commit
d239bc3643
|
@ -1,4 +1,8 @@
|
||||||
{ buildPythonPackage, fetchPypi, lib, pythonOlder }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "dnspython";
|
pname = "dnspython";
|
||||||
|
@ -12,11 +16,11 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
# needs networking for some tests
|
# needs networking for some tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "dns" ];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A DNS toolkit for Python 3.x";
|
description = "A DNS toolkit for Python";
|
||||||
homepage = "http://www.dnspython.org";
|
homepage = "http://www.dnspython.org";
|
||||||
# BSD-like, check https://www.dnspython.org/LICENSE for details
|
license = with licenses; [ isc ];
|
||||||
license = lib.licenses.free;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{ buildPythonPackage, fetchPypi, lib, pythonOlder }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "dnspython";
|
pname = "dnspython";
|
||||||
|
@ -13,11 +17,11 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
# needs networking for some tests
|
# needs networking for some tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "dns" ];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A DNS toolkit for Python 3.x";
|
description = "A DNS toolkit for Python";
|
||||||
homepage = "http://www.dnspython.org";
|
homepage = "http://www.dnspython.org";
|
||||||
# BSD-like, check https://www.dnspython.org/LICENSE for details
|
license = with licenses; [ isc ];
|
||||||
license = lib.licenses.free;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue