about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-03-28 20:43:30 +0200
committerGitHub <noreply@github.com>2022-03-28 20:43:30 +0200
commitffd4e2fe0913fe05b092bdeee833fc733dd77c83 (patch)
treeb848fa8ae95e591d1f046dbd4a761fc0490ebf85 /pkgs
parent5cfb6815f3f83ffb6b5800ff372e69c57533dba4 (diff)
downloadnixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.tar
nixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.tar.gz
nixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.tar.bz2
nixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.tar.lz
nixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.tar.xz
nixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.tar.zst
nixlib-ffd4e2fe0913fe05b092bdeee833fc733dd77c83.zip
python3Packages.azure-mgmt-signalr: disable on older Python releases
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-signalr/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-signalr/default.nix b/pkgs/development/python-modules/azure-mgmt-signalr/default.nix
index 87da5623e381..baa318bba461 100644
--- a/pkgs/development/python-modules/azure-mgmt-signalr/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-signalr/default.nix
@@ -5,17 +5,20 @@
 , msrestazure
 , azure-common
 , azure-mgmt-core
-, azure-mgmt-nspkg
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "azure-mgmt-signalr";
   version = "1.1.0";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "sha256-lUNIDyP5W+8aIX7manfMqaO2IJJm/+2O+Buv+Bh4EZE=";
+    hash = "sha256-lUNIDyP5W+8aIX7manfMqaO2IJJm/+2O+Buv+Bh4EZE=";
   };
 
   propagatedBuildInputs = [
@@ -23,7 +26,6 @@ buildPythonPackage rec {
     msrestazure
     azure-common
     azure-mgmt-core
-    azure-mgmt-nspkg
   ];
 
   # has no tests