mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #130261 from Caascad/py-graphqlclient
This commit is contained in:
commit
ea64c2f6fd
|
@ -5918,6 +5918,12 @@
|
|||
githubId = 1104419;
|
||||
name = "Lucas Hoffmann";
|
||||
};
|
||||
lde = {
|
||||
email = "lilian.deloche@puck.fr";
|
||||
github = "lde";
|
||||
githubId = 1447020;
|
||||
name = "Lilian Deloche";
|
||||
};
|
||||
ldelelis = {
|
||||
email = "ldelelis@est.frba.utn.edu.ar";
|
||||
github = "ldelelis";
|
||||
|
|
31
pkgs/development/python-modules/graphqlclient/default.nix
Normal file
31
pkgs/development/python-modules/graphqlclient/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -3102,6 +3102,8 @@ in {
|
|||
|
||||
graphene = callPackage ../development/python-modules/graphene { };
|
||||
|
||||
graphqlclient= callPackage ../development/python-modules/graphqlclient { };
|
||||
|
||||
graphql-core = callPackage ../development/python-modules/graphql-core { };
|
||||
|
||||
graphql-relay = callPackage ../development/python-modules/graphql-relay { };
|
||||
|
|
Loading…
Reference in a new issue