diff options
| author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2024-03-06 20:26:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-06 20:26:06 +0100 |
| commit | 39ac57b7c57412f660beb0df6765bd84b7b2bbb5 (patch) | |
| tree | 2d24f5c79c31183c60395cf7c736d5a1ce03eeb9 /pkgs/development/python-modules/python-gitlab/default.nix | |
| parent | 88c08be88ffd6266451c3a547122aa55f31a2576 (diff) | |
| parent | 557b9754bcad48f9365fef304abce7ecfae23442 (diff) | |
Merge branch 'master' into license-updates
Diffstat (limited to 'pkgs/development/python-modules/python-gitlab/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/python-gitlab/default.nix | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix index 0c0ded8af09f..6931a0d4ee45 100644 --- a/pkgs/development/python-modules/python-gitlab/default.nix +++ b/pkgs/development/python-modules/python-gitlab/default.nix @@ -2,6 +2,11 @@ , buildPythonPackage , pythonOlder , fetchPypi + +# build-system +, setuptools + +# dependencies , argcomplete , requests , requests-toolbelt @@ -10,16 +15,20 @@ buildPythonPackage rec { pname = "python-gitlab"; - version = "3.15.0"; - format = "setuptools"; + version = "4.4.0"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-yeZet2Eqn7uKvwM5ly7Kf9enPU2mbJtEb/5SiTCv9TQ="; + hash = "sha256-HRF797QzroJV5ddOcsZgl49Q7oXrYiSMn7Uu9Dw+OBQ="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ requests requests-toolbelt |
