Skip to content

Commit

Permalink
python3Packages.python-gitlab: 1.15.0 -> 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
das-g committed May 3, 2020
1 parent be60e99 commit 05d6ef2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/development/python-modules/python-gitlab/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, requests, six, mock, httmock }:
{ stdenv, buildPythonPackage, fetchPypi, requests, mock, httmock, pythonOlder }:

buildPythonPackage rec {
pname = "python-gitlab";
version = "1.15.0";
version = "2.2.0";

src = fetchPypi {
inherit pname version;
sha256 = "45125a0ed4d0027d4317bdbd71ca02fc52b0ac160b9d2c3c5be131b4d19f867e";
sha256 = "4c4ea60c8303f4214522b18038df017cae35afda7474efa0b4e19c2e73bc3ae2";
};

propagatedBuildInputs = [ requests six ];
propagatedBuildInputs = [ requests ];

checkInputs = [ mock httmock ];

disabled = pythonOlder "3.6";

meta = with stdenv.lib; {
description = "Interact with GitLab API";
homepage = "https://github.com/python-gitlab/python-gitlab";
Expand Down

0 comments on commit 05d6ef2

Please sign in to comment.