3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #155674 from r-ryantm/auto-update/python310Packages.debian

This commit is contained in:
Sandro 2022-01-20 03:21:46 +01:00 committed by GitHub
commit fbfd23ab06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ];
};
}