1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 six,
6}:
7
8buildPythonPackage rec {
9 pname = "graphqlclient";
10 version = "0.2.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0b6r3ng78qsn7c9zksx4rgdkmp5296d40kbmjn8q614cz0ymyc5k";
16 };
17
18 propagatedBuildInputs = [ six ];
19
20 # Project has no tests
21 doCheck = false;
22
23 pythonImportsCheck = [ "graphqlclient" ];
24
25 meta = with lib; {
26 description = "Simple GraphQL client for Python";
27 homepage = "https://github.com/prisma-labs/python-graphql-client";
28 license = licenses.mit;
29 maintainers = with maintainers; [ lde ];
30 };
31}