python39Packages.debian: format, add import check, update meta

This commit is contained in:
Sandro Jäckel 2021-08-27 03:14:34 +02:00
parent a08f65b1f1
commit 309048fbc8
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,5 +1,9 @@
{ lib, buildPythonPackage, fetchPypi
, chardet, six}:
{ lib
, buildPythonPackage
, fetchPypi
, chardet
, six
}:
buildPythonPackage rec {
pname = "python-debian";
@ -15,8 +19,11 @@ buildPythonPackage rec {
# No tests in archive
doCheck = false;
meta = {
pythonImportsCheck = [ "debian" ];
meta = with lib; {
description = "Debian package related modules";
license = lib.licenses.gpl2;
license = licenses.gpl2;
maintainers = with maintainers; [ ];
};
}