Initial commit

This commit is contained in:
Andrey Golovizin 2020-01-19 15:58:54 +01:00
commit 02ad5fed3d
17 changed files with 1232 additions and 0 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
let
pkgs = import (builtins.fetchTarball {
# https://nixos.org/channels/nixos-unstable-small
url = https://releases.nixos.org/nixos/unstable-small/nixos-20.03pre209383.a892d9617d3/nixexprs.tar.xz;
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "0gza1ilnv14jknig235iyd1z0apxhjwrsq93wygd9673fs7f4w5p";
}) {};
python = import ./requirements.nix { inherit pkgs; };
in
python.interpreter