lol

python3Packages.azure-mgmt-signalr: disable on older Python releases

authored by

Fabian Affolter and committed by
GitHub
ffd4e2fe 5cfb6815

+5 -3
+5 -3
pkgs/development/python-modules/azure-mgmt-signalr/default.nix
··· 5 5 , msrestazure 6 6 , azure-common 7 7 , azure-mgmt-core 8 - , azure-mgmt-nspkg 8 + , pythonOlder 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-signalr"; 13 13 version = "1.1.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.6"; 14 17 15 18 src = fetchPypi { 16 19 inherit pname version; 17 20 extension = "zip"; 18 - sha256 = "sha256-lUNIDyP5W+8aIX7manfMqaO2IJJm/+2O+Buv+Bh4EZE="; 21 + hash = "sha256-lUNIDyP5W+8aIX7manfMqaO2IJJm/+2O+Buv+Bh4EZE="; 19 22 }; 20 23 21 24 propagatedBuildInputs = [ ··· 23 26 msrestazure 24 27 azure-common 25 28 azure-mgmt-core 26 - azure-mgmt-nspkg 27 29 ]; 28 30 29 31 # has no tests