python-packages-overrides.nix
253 lines
| 5.6 KiB
| text/x-nix
|
NixLexer
/ pkgs / python-packages-overrides.nix
r1 | # Overrides for the generated python-packages.nix | |||
# | ||||
# This function is intended to be used as an extension to the generated file | ||||
# python-packages.nix. The main objective is to add needed dependencies of C | ||||
# libraries and tweak the build instructions where needed. | ||||
r2824 | { pkgs | |||
, basePythonPackages | ||||
}: | ||||
r1 | ||||
let | ||||
sed = "sed -i"; | ||||
r2824 | ||||
r202 | localLicenses = { | |||
repoze = { | ||||
fullName = "Repoze License"; | ||||
url = http://www.repoze.org/LICENSE.txt; | ||||
}; | ||||
}; | ||||
Martin Bornhold
|
r716 | |||
r1 | in | |||
self: super: { | ||||
r2824 | "appenlight-client" = super."appenlight-client".override (attrs: { | |||
r202 | meta = { | |||
license = [ pkgs.lib.licenses.bsdOriginal ]; | ||||
}; | ||||
}); | ||||
r2824 | "beaker" = super."beaker".override (attrs: { | |||
r2680 | patches = [ | |||
r3138 | ./patches/beaker/patch-beaker-lock-func-debug.diff | |||
./patches/beaker/patch-beaker-metadata-reuse.diff | ||||
r2680 | ]; | |||
}); | ||||
r2825 | "gevent" = super."gevent".override (attrs: { | |||
propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | ||||
# NOTE: (marcink) odd requirements from gevent aren't set properly, | ||||
# thus we need to inject psutil manually | ||||
self."psutil" | ||||
]; | ||||
}); | ||||
r2824 | "future" = super."future".override (attrs: { | |||
r202 | meta = { | |||
license = [ pkgs.lib.licenses.mit ]; | ||||
}; | ||||
}); | ||||
r2824 | "testpath" = super."testpath".override (attrs: { | |||
r2361 | meta = { | |||
license = [ pkgs.lib.licenses.mit ]; | ||||
}; | ||||
}); | ||||
r2824 | "gnureadline" = super."gnureadline".override (attrs: { | |||
buildInputs = [ | ||||
r1 | pkgs.ncurses | |||
]; | ||||
patchPhase = '' | ||||
substituteInPlace setup.py --replace "/bin/bash" "${pkgs.bash}/bin/bash" | ||||
''; | ||||
}); | ||||
r2824 | "gunicorn" = super."gunicorn".override (attrs: { | |||
propagatedBuildInputs = [ | ||||
r143 | # johbo: futures is needed as long as we are on Python 2, otherwise | |||
# gunicorn explodes if used with multiple threads per worker. | ||||
r2824 | self."futures" | |||
r143 | ]; | |||
}); | ||||
r2824 | "nbconvert" = super."nbconvert".override (attrs: { | |||
r1488 | propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | |||
# marcink: plug in jupyter-client for notebook rendering | ||||
r2824 | self."jupyter-client" | |||
r1488 | ]; | |||
}); | ||||
r2824 | "ipython" = super."ipython".override (attrs: { | |||
r164 | propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | |||
r2824 | self."gnureadline" | |||
r164 | ]; | |||
}); | ||||
r2824 | "lxml" = super."lxml".override (attrs: { | |||
buildInputs = [ | ||||
r1 | pkgs.libxml2 | |||
pkgs.libxslt | ||||
]; | ||||
r2824 | propagatedBuildInputs = [ | |||
# Needed, so that "setup.py bdist_wheel" does work | ||||
self."wheel" | ||||
]; | ||||
r1 | }); | |||
r2824 | "mysql-python" = super."mysql-python".override (attrs: { | |||
buildInputs = [ | ||||
r1 | pkgs.openssl | |||
]; | ||||
r2824 | propagatedBuildInputs = [ | |||
r2609 | pkgs.libmysql | |||
r1 | pkgs.zlib | |||
]; | ||||
}); | ||||
r2824 | "psycopg2" = super."psycopg2".override (attrs: { | |||
propagatedBuildInputs = [ | ||||
r1 | pkgs.postgresql | |||
]; | ||||
r202 | meta = { | |||
license = pkgs.lib.licenses.lgpl3Plus; | ||||
}; | ||||
r1 | }); | |||
r2824 | "pycurl" = super."pycurl".override (attrs: { | |||
propagatedBuildInputs = [ | ||||
r1 | pkgs.curl | |||
pkgs.openssl | ||||
]; | ||||
preConfigure = '' | ||||
substituteInPlace setup.py --replace '--static-libs' '--libs' | ||||
export PYCURL_SSL_LIBRARY=openssl | ||||
''; | ||||
r202 | meta = { | |||
license = pkgs.lib.licenses.mit; | ||||
}; | ||||
r1 | }); | |||
r2824 | "pyramid" = super."pyramid".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
r1 | }); | |||
r2824 | "pyramid-debugtoolbar" = super."pyramid-debugtoolbar".override (attrs: { | |||
Martin Bornhold
|
r206 | meta = { | ||
license = [ pkgs.lib.licenses.bsdOriginal localLicenses.repoze ]; | ||||
}; | ||||
}); | ||||
r2824 | "pysqlite" = super."pysqlite".override (attrs: { | |||
r1 | propagatedBuildInputs = [ | |||
pkgs.sqlite | ||||
]; | ||||
r202 | meta = { | |||
license = [ pkgs.lib.licenses.zlib pkgs.lib.licenses.libpng ]; | ||||
}; | ||||
r1 | }); | |||
r2824 | "pytest-runner" = super."pytest-runner".override (attrs: { | |||
r1 | propagatedBuildInputs = [ | |||
r2824 | self."setuptools-scm" | |||
]; | ||||
}); | ||||
"python-ldap" = super."python-ldap".override (attrs: { | ||||
propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | ||||
pkgs.openldap | ||||
pkgs.cyrus_sasl | ||||
pkgs.openssl | ||||
r1 | ]; | |||
}); | ||||
r2824 | "python-pam" = super."python-pam".override (attrs: { | |||
propagatedBuildInputs = [ | ||||
pkgs.pam | ||||
r1 | ]; | |||
r2824 | # TODO: johbo: Check if this can be avoided, or transform into | |||
# a real patch | ||||
patchPhase = '' | ||||
substituteInPlace pam.py \ | ||||
--replace 'find_library("pam")' '"${pkgs.pam}/lib/libpam.so.0"' | ||||
''; | ||||
}); | ||||
"pyzmq" = super."pyzmq".override (attrs: { | ||||
buildInputs = [ | ||||
pkgs.czmq | ||||
]; | ||||
r1 | }); | |||
r2824 | "urlobject" = super."urlobject".override (attrs: { | |||
r201 | meta = { | |||
license = { | ||||
spdxId = "Unlicense"; | ||||
fullName = "The Unlicense"; | ||||
url = http://unlicense.org/; | ||||
}; | ||||
}; | ||||
}); | ||||
r2824 | "docutils" = super."docutils".override (attrs: { | |||
r202 | meta = { | |||
license = pkgs.lib.licenses.bsd2; | ||||
}; | ||||
}); | ||||
r2824 | "colander" = super."colander".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
}); | ||||
r2824 | "pyramid-beaker" = super."pyramid-beaker".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
}); | ||||
r2824 | "pyramid-mako" = super."pyramid-mako".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
}); | ||||
r2824 | "repoze.lru" = super."repoze.lru".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
}); | ||||
r2824 | "python-editor" = super."python-editor".override (attrs: { | |||
r202 | meta = { | |||
license = pkgs.lib.licenses.asl20; | ||||
}; | ||||
}); | ||||
r2824 | "translationstring" = super."translationstring".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
}); | ||||
r2824 | "venusian" = super."venusian".override (attrs: { | |||
r202 | meta = { | |||
license = localLicenses.repoze; | ||||
}; | ||||
}); | ||||
r3139 | "supervisor" = super."supervisor".override (attrs: { | |||
patches = [ | ||||
./patches/supervisor/patch-rlimits-old-kernel.diff | ||||
]; | ||||
}); | ||||
r2824 | # Avoid that base packages screw up the build process | |||
inherit (basePythonPackages) | ||||
setuptools; | ||||
r1 | ||||
} | ||||