linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-gitlab / default.nix
blob1a2e28d57aba9dc7a55edf67756259d4ae8f0a5f
1 { lib, buildPythonPackage, fetchPypi, requests, mock, httmock, pythonOlder, pytest, responses }:
3 buildPythonPackage rec {
4   pname = "python-gitlab";
5   version = "2.5.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "68b42aafd4b620ab2534ff78a52584c7f799e4e55d5ac297eab4263066e6f74b";
10   };
12   propagatedBuildInputs = [ requests ];
14   checkInputs = [ mock httmock pytest responses ];
16   disabled = pythonOlder "3.6";
18   meta = with lib; {
19     description = "Interact with GitLab API";
20     homepage = "https://github.com/python-gitlab/python-gitlab";
21     license = licenses.lgpl3;
22     maintainers = with maintainers; [ nyanloutre ];
23   };