12 buildPythonPackage rec {
13 pname = "graphql-core";
15 format = "setuptools";
17 disabled = pythonOlder "3.6";
19 src = fetchFromGitHub {
20 owner = "graphql-python";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-LtBbHA5r6/YNh2gKX0+NqQjrpKuMioyOYWT0R59SIL4=";
33 pythonImportsCheck = [ "graphql" ];
36 description = "Port of graphql-js to Python";
37 homepage = "https://github.com/graphql-python/graphql-core";
38 license = licenses.mit;
39 maintainers = with maintainers; [ kamadorueda ];