10 buildPythonPackage rec {
11 pname = "python-debianbts";
15 disabled = pythonOlder "3.8";
18 inherit pname version;
19 hash = "sha256-JbPb0lZND96XLZNU97wMuT9iGNXVN2KTsZC2St6FfuU=";
23 sed -i "/--cov/d" pyproject.toml
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [ pysimplesoap ];
30 # Most tests require network access
33 pythonImportsCheck = [ "debianbts" ];
36 description = "Python interface to Debian's Bug Tracking System";
37 mainProgram = "debianbts";
38 homepage = "https://github.com/venthur/python-debianbts";
39 downloadPage = "https://pypi.org/project/python-debianbts/";
40 changelog = "https://github.com/venthur/python-debianbts/blob/${version}/CHANGELOG.md";
41 license = licenses.mit;
42 maintainers = with maintainers; [ nicoo ];