From 579981443168f818c3a764e7400735e4f017192f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 19 Jan 2022 16:47:28 +0000 Subject: [PATCH] python310Packages.debian: 0.1.42 -> 0.1.43, add SuperSandro2000 as maintainer --- pkgs/development/python-modules/debian/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/debian/default.nix b/pkgs/development/python-modules/debian/default.nix index 569e2b29631e..98f0e234e3ae 100644 --- a/pkgs/development/python-modules/debian/default.nix +++ b/pkgs/development/python-modules/debian/default.nix @@ -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 ]; }; }