1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 10:41:06 +01:00

+ generate-shell-nix

This commit is contained in:
Kierán Meinhardt
2018-10-10 13:03:22 +02:00
parent 5b53dd89ce
commit e2ee80e2bb
6 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
with import <nixpkgs> {};
buildPythonPackage {
name = "flask-graphql";
src = fetchurl {
url = "https://files.pythonhosted.org/packages/d6/8c/043bd1deec422d33c31961dd93d952236326b1e5bbca6d3479383360ac42/Flask-GraphQL-2.0.0.tar.gz";
md5 = "72dacc65c7879d4d84d871fff5d5cf0c";
};
propagatedBuildInputs = with pkgs.python36Packages; [ graphql-core flask graphql-server-core ];
meta = with stdenv.lib; {
description = "Flask-GraphQL";
homepage = https://github.com/graphql-python/flask-graphql;
license = licenses.mit;
};
}