lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #120193 from fabaff/license-dnspython

authored by

Sandro and committed by
GitHub
d239bc36 951e194c

+18 -10
+9 -5
pkgs/development/python-modules/dnspython/1.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, pythonOlder }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + }: 2 6 3 7 buildPythonPackage rec { 4 8 pname = "dnspython"; ··· 12 16 13 17 # needs networking for some tests 14 18 doCheck = false; 19 + pythonImportsCheck = [ "dns" ]; 15 20 16 - meta = { 17 - description = "A DNS toolkit for Python 3.x"; 21 + meta = with lib; { 22 + description = "A DNS toolkit for Python"; 18 23 homepage = "http://www.dnspython.org"; 19 - # BSD-like, check https://www.dnspython.org/LICENSE for details 20 - license = lib.licenses.free; 24 + license = with licenses; [ isc ]; 21 25 }; 22 26 }
+9 -5
pkgs/development/python-modules/dnspython/default.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, pythonOlder }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + }: 2 6 3 7 buildPythonPackage rec { 4 8 pname = "dnspython"; ··· 13 17 14 18 # needs networking for some tests 15 19 doCheck = false; 20 + pythonImportsCheck = [ "dns" ]; 16 21 17 - meta = { 18 - description = "A DNS toolkit for Python 3.x"; 22 + meta = with lib; { 23 + description = "A DNS toolkit for Python"; 19 24 homepage = "http://www.dnspython.org"; 20 - # BSD-like, check https://www.dnspython.org/LICENSE for details 21 - license = lib.licenses.free; 25 + license = with licenses; [ isc ]; 22 26 }; 23 27 }