summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-01-23 09:51:47 +0100
committerGitHub <noreply@github.com>2022-01-23 09:51:47 +0100
commitc43ee47d81f2a7129c8c1576bcdb322622f8a700 (patch)
treee15198950085b5c7fb9eb31824d422e86d9fb129 /pkgs
parentdb3cc2d36ec1b4023abf1e742a69daa0115ff83e (diff)
downloadnixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.tar
nixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.tar.gz
nixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.tar.bz2
nixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.tar.lz
nixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.tar.xz
nixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.tar.zst
nixpkgs-c43ee47d81f2a7129c8c1576bcdb322622f8a700.zip
python3Packages.bsblan: disable on older Python releases
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/bsblan/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/bsblan/default.nix b/pkgs/development/python-modules/bsblan/default.nix
index 58a3382c18b..6db95234775 100644
--- a/pkgs/development/python-modules/bsblan/default.nix
+++ b/pkgs/development/python-modules/bsblan/default.nix
@@ -8,6 +8,7 @@
 , pytest-asyncio
 , pytest-cov
 , pytest-mock
+, pythonOlder
 , aiohttp
 , attrs
 , cattrs
@@ -17,6 +18,9 @@
 buildPythonPackage rec {
   pname = "bsblan";
   version = "0.5.0";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.8";
 
   src = fetchFromGitHub {
     owner = "liudger";
@@ -42,7 +46,9 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  pythonImportsCheck = [ "bsblan" ];
+  pythonImportsCheck = [
+    "bsblan"
+  ];
 
   meta = with lib; {
     description = "Python client for BSB-Lan";