python310Packages.debian: 0.1.42 -> 0.1.43, add SuperSandro2000 as maintainer

This commit is contained in:
R. Ryantm 2022-01-19 16:47:28 +00:00 committed by Sandro Jäckel
parent e098427f75
commit 5799814431
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,20 +1,22 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, chardet
, six
}:
buildPythonPackage rec {
pname = "python-debian";
version = "0.1.42";
version = "0.1.43";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "a794f4c4ee2318ae7260c2e32dac252b833bdaf6686efc2a1afbc6ecf3f0931f";
sha256 = "abc702511c4e268da49c22fd97c83de355c559f3271e0798a6b67964be3d8248";
};
propagatedBuildInputs = [ chardet six ];
propagatedBuildInputs = [ chardet ];
# No tests in archive
doCheck = false;
@ -23,7 +25,9 @@ buildPythonPackage rec {
meta = with lib; {
description = "Debian package related modules";
homepage = "https://salsa.debian.org/python-debian-team/python-debian";
changelog = "https://salsa.debian.org/python-debian-team/python-debian/-/blob/master/debian/changelog";
license = licenses.gpl2;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ SuperSandro2000 ];
};
}