pythonPackages.debianbts: init at 4.0.1

This commit is contained in:
nicoo 2023-08-29 16:14:11 +00:00
parent b1979e6d66
commit 61d6693090
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pysimplesoap
, pytest , pytest-xdist
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "python-debianbts";
version = "4.0.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "b0817d593ccdfb58a5f37b8cb3873bd0b2268b434f2798dc75b206d7550fdf04";
};
buildInputs = [ setuptools ];
propagatedBuildInputs = [ pysimplesoap ];
checkInputs = [
pytest
pytest-xdist
];
meta = with lib; {
description = "Python interface to Debian's Bug Tracking System";
homepage = "https://github.com/venthur/python-debianbts";
downloadPage = "https://pypi.org/project/python-debianbts/";
changelog = "https://github.com/venthur/python-debianbts/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ maintainers.nicoo ];
};
}

View File

@ -2557,6 +2557,8 @@ self: super: with self; {
debian = callPackage ../development/python-modules/debian { };
debianbts = callPackage ../development/python-modules/debianbts { };
debian-inspector = callPackage ../development/python-modules/debian-inspector { };
debtcollector = callPackage ../development/python-modules/debtcollector { };