Merge pull request #130261 from Caascad/py-graphqlclient

This commit is contained in:
Sandro
2021-07-23 15:24:16 +02:00
committed by GitHub
3 changed files with 39 additions and 0 deletions
@@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "graphqlclient";
version = "0.2.4";
src = fetchPypi {
inherit pname version;
sha256 = "0b6r3ng78qsn7c9zksx4rgdkmp5296d40kbmjn8q614cz0ymyc5k";
};
propagatedBuildInputs = [
six
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "graphqlclient" ];
meta = with lib; {
description = "Simple GraphQL client for Python";
homepage = "https://github.com/prisma-labs/python-graphql-client";
license = licenses.mit;
maintainers = with maintainers; [ lde ];
};
}