blob: aaa138def543a8213767e26282fdbd95d9465b81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchPypi,
pysimplesoap,
setuptools,
distutils,
}:
buildPythonPackage rec {
pname = "python-debianbts";
version = "4.1.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "python_debianbts";
hash = "sha256-9EOxjOJBGzcxA3hHFeZwffA09I2te+OHppF7FuFU15M=";
};
postPatch = ''
sed -i "/--cov/d" pyproject.toml
'';
build-system = [ setuptools ];
dependencies = [
pysimplesoap
distutils
];
# Most tests require network access
doCheck = false;
pythonImportsCheck = [ "debianbts" ];
meta = {
description = "Python interface to Debian's Bug Tracking System";
mainProgram = "debianbts";
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ nicoo ];
};
}
|