wownero
/
wownerujo
Archived
4
0
Fork 0
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wownerujo/script/nix/f-droid-build-shell.nix

36 lines
491 B

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
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
]
; python-with-fdroid-packages = pkgs.python3.withPackages fdroid-python-packages
; in
mkShell
{
buildInputs =
[
python-with-fdroid-packages
]
; }