biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / graphql-core / default.nix
blob7986f0cd3246408a2d5aa694e3d6be8809f08dc5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   py,
6   pytest-benchmark,
7   pytest-asyncio,
8   pytestCheckHook,
9   pythonOlder,
12 buildPythonPackage rec {
13   pname = "graphql-core";
14   version = "3.2.3";
15   format = "setuptools";
17   disabled = pythonOlder "3.6";
19   src = fetchFromGitHub {
20     owner = "graphql-python";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-LtBbHA5r6/YNh2gKX0+NqQjrpKuMioyOYWT0R59SIL4=";
24   };
26   nativeCheckInputs = [
27     py
28     pytest-asyncio
29     pytest-benchmark
30     pytestCheckHook
31   ];
33   pythonImportsCheck = [ "graphql" ];
35   meta = with lib; {
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 ];
40   };