You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cyberwow/etc/nix/fdroid.nix

39 lines
562 B

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
# fdroid vm might require a manual enabling of "I/O APIC"
let
fdroid-python-packages = python-packages: with python-packages; [
androguard
clint
defusedxml
GitPython
libcloud
mwclient
paramiko
pillow
pyasn1
pyasn1-modules
python-vagrant
pyyaml
qrcode
requests
ruamel_yaml
libvirt
]
; python-with-fdroid-packages = pkgs.python3.withPackages fdroid-python-packages
; in
mkShell
{
buildInputs =
[
python-with-fdroid-packages
]
; }