Skip to content

Instantly share code, notes, and snippets.

@kirca
Created May 14, 2022 23:58
Show Gist options
  • Save kirca/3fd740b6dd3e0c66a5a0d587649542c4 to your computer and use it in GitHub Desktop.
Save kirca/3fd740b6dd3e0c66a5a0d587649542c4 to your computer and use it in GitHub Desktop.
Odoo nix shell
with import <nixpkgs> {};
let
pythonEnv = python39.withPackages (ps: [
ps.numpy
ps.toolz
ps.Babel
ps.chardet
ps.decorator
ps.docutils
ps.ebaysdk
ps.freezegun
ps.gevent
ps.greenlet
ps.html2text
ps.idna
ps.jinja2
ps.libsass
ps.lxml
ps.markupsafe
ps.num2words
ps.ofxparse
ps.passlib
ps.pillow
ps.polib
ps.psutil
ps.psycopg2
ps.pydot
ps.pyopenssl
ps.pypdf2
ps.pyserial
ps.python-dateutil
ps.ldap
ps.python-stdnum
ps.pytz
ps.pyusb
ps.qrcode
ps.reportlab
ps.requests
ps.vobject
ps.werkzeug1
ps.xlrd
ps.XlsxWriter
ps.xlwt
ps.zeep
]);
in mkShell {
packages = [
pythonEnv
black
mypy
libffi
openssl
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment