python310Packages.azure-mgmt-containerregistry: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-02-21 08:12:41 +01:00 committed by GitHub
parent 765a1ab24b
commit 25aa98a67a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,7 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, azure-common
, azure-mgmt-core
, msrest
@ -6,9 +9,11 @@
}:
buildPythonPackage rec {
version = "10.1.0";
pname = "azure-mgmt-containerregistry";
disabled = isPy27;
version = "10.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;