My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/graphqlclient/default.nix

31 lines
603 B

{ 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 ];
};
}