10 buildPythonPackage rec {
11 pname = "graphql-subscription-manager";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "Danielhiversen";
19 repo = "PyGraphqlWebsocketManager";
20 rev = "refs/tags/${version}";
21 hash = "sha256-6/REvY5QxsAPV41Pvg8vrJPYbDrGUrpOPn0vzIcCu0k=";
24 propagatedBuildInputs = [
29 # no tests implemented
32 pythonImportsCheck = [ "graphql_subscription_manager" ];
35 description = "Python3 library for graphql subscription manager";
36 homepage = "https://github.com/Danielhiversen/PyGraphqlWebsocketManager";
37 license = licenses.mit;
38 maintainers = with maintainers; [ dotlambda ];