This repository was archived by the owner on Oct 7, 2022. It is now read-only.
This repository was archived by the owner on Oct 7, 2022. It is now read-only.
Unable to find release for package cairocffi of version file-.cairocffi-VERSION #276
Closed
Description
I'm trying to nixify https://github.com/taigaio/taiga-back with pypi2nix. I applied the following patch to work around Asana/python-asana#80:
diff --git a/requirements.txt b/requirements.txt
index 9aaf3ebb61..e754ea4e0c 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,6 +1,6 @@
-i https://pypi.org/simple
amqp==2.4.2
-asana==0.6.7
+asana==0.8.2
asn1crypto==0.24.0
billiard==3.5.0.5
bleach==2.1.4
Now I'm getting this error:
$ pypi2nix -V 3.6 -r requirements.txt -E postgresql_11 -E "libxml2 libxslt zlib gcc libffi openssl pkgconfig zlib libjpeg openjpeg libtiff freetype lcms2 libwebp tcl" --default-overrides
pypi2nix v1.8.1 running ...
Stage1: Downloading wheels and creating wheelhouse ...
Stage2: Extracting metadata from pypi.python.org ...
WARNING: Couldn't recognize license `Standard PIL License` for `Pillow`
WARNING: Couldn't recognize license `Copyright 2013 Alexey Kachayev` for `fn`
|-> from webencodings-0.5.1.dist-info|-> from webcolors-1.7.dist-info|-> from vine-1.3.0.dist-info|-> from urllib3-1.24.2.dist-info|-> from Unidecode-0.4.20.dist-info|-> from tinycss-0.4.dist-info|-> from six-1.12.0.dist-info|-> from setuptools-41.0.1.dist-info|-> from serpy-0.1.1.dist-info|-> from sampledata-0.3.7.dist-info|-> from requests_oauthlib-0.8.0.dist-info|-> from requests-2.21.0.dist-info|-> from redis-2.10.5.dist-info|-> from raven-6.1.0.dist-info|-> from pytz-2019.1.dist-info|-> from python_magic-0.4.13.dist-info|-> from python_dateutil-2.7.5.dist-info|-> from PyJWT-1.7.1.dist-info|-> from Pygments-2.2.0.dist-info|-> from pycparser-2.19.dist-info|-> from psycopg2_binary-2.7.5.dist-info|-> from psd_tools-1.4.dist-info|-> from premailer-3.0.1.dist-info|-> from Pillow-4.1.1.dist-info|-> from olefile-0.46.dist-info|-> from oauthlib-3.0.1.dist-info|-> from netaddr-0.7.19.dist-info|-> from MarkupSafe-1.1.1.dist-info|-> from Markdown-3.0.1.dist-info|-> from lxml-4.3.3.dist-info|-> from kombu-4.0.2.dist-info|-> from Jinja2-2.10.1.dist-info|-> from idna-2.8.dist-info|-> from html5lib-1.0.1.dist-info|-> from gunicorn-19.7.1.dist-info|-> from fn-0.4.3.dist-info|-> from easy_thumbnails-2.4.1.dist-info|-> from docopt-0.6.2.dist-info|-> from djmail-1.0.1.dist-info|-> from django_sr-0.0.4.dist-info|-> from django_sites-0.9.dist-info|-> from django_sampledatahelper-0.4.1.dist-info|-> from django_picklefield-0.3.2.dist-info|-> from django_pglocks-1.0.2.dist-info|-> from django_jinja-2.3.1.dist-info|-> from django_ipware-1.1.6.dist-info|-> from Django-1.11.20.dist-info|-> from diff_match_patch-20121119.dist-info|-> from cssutils-1.0.2.dist-info|-> from cssselect-1.0.3.dist-info|-> from cryptography-2.3.1.dist-info|-> from contextlib2-0.5.5.dist-info|-> from chardet-3.0.4.dist-info|-> from cffi-1.12.3.dist-info|-> from certifi-2019.3.9.dist-info|-> from celery-4.0.2.dist-info|-> from CairoSVG-2.0.3.dist-info|-> from cairocffi-file_.cairocffi_VERSION.dist-info
Error: Unable to find release for package cairocffi of version file-.cairocffi-VERSION
I'm not sure what it's doing there with the cairocffi version. It should be:
$ grep cairocffi requirements.txt
cairocffi==1.0.2
Any ideas? I'm using pypi2nix 1.8.1 from the NixOS 19.03 channel.