1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 02:51:08 +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,22 @@
\
# This expression has been automatically generated by https://github.com/proger/python2nix.
{ buildPythonPackage, fetchurl, stdenv }:
buildPythonPackage rec {
name = "graphene";
src = fetchurl {
url = "https://files.pythonhosted.org/packages/ad/d0/c3eb1819a9349e9ce5cb3b906a33ea59ffa2666e08a940f7551506478713/graphene-2.1.3.tar.gz";
md5 = "e93c0b3be2503c088dddcb25350d2a59";
};
propagatedBuildInputs = [ ];
meta = with stdenv.lib; {
description = "Please read `UPGRADE-v2.0.md </UPGRADE-v2.0.md>`__ to learn how to";
homepage = https://github.com/graphql-python/graphene;
license = licenses.mit;
};
}