mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
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 {
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user