Skip to content

Instantly share code, notes, and snippets.

@Slabity
Last active March 10, 2020 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Slabity/34f82cdb7cf149483042a8fa530b75fd to your computer and use it in GitHub Desktop.
Save Slabity/34f82cdb7cf149483042a8fa530b75fd to your computer and use it in GitHub Desktop.
{ stdenv, buildPythonPackage, fetchPypi
, setuptools_scm, pytest, pluggy, py
}:
buildPythonPackage rec {
pname = "graphene";
version = "2.1.8";
src = fetchPypi {
inherit pname version;
sha256 = "cf8436dc59d8695346fcd3ab296de46425ecab00d64096cebe79fb51ecb2eb93";
};
doCheck = false;
buildInputs = [
setuptools_scm
];
nativeBuildInputs = [
];
checkInputs = [
];
propagatedBuildInputs = [
py
];
meta = with stdenv.lib; {
maintainers = with maintainers; [ ];
description = "GraphQL Framework for Python";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment