python3Packages.graphql-subscription-manager: add format

This commit is contained in:
Fabian Affolter 2022-03-19 10:38:50 +01:00 committed by GitHub
parent 4167ab1b73
commit 6c1085a647
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@
buildPythonPackage rec {
pname = "graphql-subscription-manager";
version = "0.5.5";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -16,7 +17,7 @@ buildPythonPackage rec {
owner = "Danielhiversen";
repo = "PyGraphqlWebsocketManager";
rev = version;
sha256 = "sha256-7MqFsttMNnWmmWKj1zaOORBTDGt6Wm8GU7w56DfPl2c=";
hash = "sha256-7MqFsttMNnWmmWKj1zaOORBTDGt6Wm8GU7w56DfPl2c=";
};
propagatedBuildInputs = [
@ -27,7 +28,9 @@ buildPythonPackage rec {
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "graphql_subscription_manager" ];
pythonImportsCheck = [
"graphql_subscription_manager"
];
meta = with lib; {
description = "Python3 library for graphql subscription manager";