linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / bugzilla / default.nix
blob365f365429858f758d40cb1d0c8e0bd8bfed0143
1 { lib, buildPythonPackage, fetchPypi
2 , pep8, coverage, logilab_common, requests }:
4 buildPythonPackage rec {
5   pname = "bugzilla";
6   version = "2.3.0";
8   src = fetchPypi {
9     pname = "python-${pname}";
10     inherit version;
11     sha256 = "0q8c3k0kdnd11g2s56cp8va9365x0xfr2m2zn9fgxjijdyhwdic5";
12   };
14   buildInputs = [ pep8 coverage logilab_common ];
15   propagatedBuildInputs = [ requests ];
17   preCheck = ''
18     mkdir -p check-phase
19     export HOME=$(pwd)/check-phase
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/python-bugzilla/python-bugzilla";
24     description = "Bugzilla XMLRPC access module";
25     license = licenses.gpl2;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ pierron peti ];
28   };