python311Packages.sseclient-py: add format

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter
2023-09-10 09:41:22 +02:00
parent 10ea760fc4
commit 29b2fedaa6
@@ -1,8 +1,16 @@
{ buildPythonPackage, fetchFromGitHub, lib, python }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "sseclient-py";
version = "1.8.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mpetazzoni";