diff --git a/conda/python-gitlab/meta.yaml b/conda/python-gitlab/meta.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..8cce6e8296470bc5ea3d891f0ef6436c48ded162
--- /dev/null
+++ b/conda/python-gitlab/meta.yaml
@@ -0,0 +1,46 @@
+{% set name = "python-gitlab" %}
+{% set version = "1.7.0" %}
+
+package:
+  name: {{ name|lower }}
+  version: {{ version }}
+
+source:
+  url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
+  sha256: 401ef8929db4dcb5b08e0a2263a0a70599fc7e5b27615f956ac26d245802d09e
+
+build:
+  number: 0
+  script: "{{ PYTHON }} -m pip install . -vv"
+  entry_points:
+    - gitlab = gitlab.cli:main
+
+requirements:
+  host:
+    - python
+    - pip
+  run:
+    - python
+    - requests
+    - six
+
+test:
+  imports:
+    - gitlab
+
+about:
+  home: https://github.com/python-gitlab/python-gitlab
+  license: LGPL-3.0
+  license_family: LGPL
+  license_file: COPYING
+  summary: 'Python wrapper for the GitLab API'
+  description: |
+    python-gitlab is a Python package providing access to the GitLab
+    server API. It supports the v4 API of GitLab, and provides a CLI
+    tool (gitlab).
+  doc_url: https://python-gitlab.readthedocs.io/
+  dev_url: https://github.com/python-gitlab/python-gitlab
+
+extra:
+  recipe-maintainers:
+    - anjos
diff --git a/scripts/build.sh b/scripts/build.sh
index 291c1187db9b0455fdfbb16926e3604a56b52e85..1a215946ad383c099a93d1e232b3021015dfee6c 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -8,6 +8,7 @@ source ${basedir}/_ci/functions.sh
 # option to conda-build.
 
 PACKAGES=()
+PACKAGES+=('conda/python-gitlab')
 PACKAGES+=('conda/ipdb')
 PACKAGES+=('conda/mne')
 PACKAGES+=('conda/vlfeat')