python312Packages.azure-mgmt-kusto: refactor

This commit is contained in:
Fabian Affolter 2024-04-10 10:20:11 +02:00
parent 955f206cc4
commit 8eadba8a35
1 changed files with 8 additions and 3 deletions

View File

@ -5,21 +5,26 @@
, fetchPypi
, isodate
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "azure-mgmt-kusto";
version = "3.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-PmGGtyVrYFCMnpiCq9x9uwoMboDO1ePlGAJzrMTj3ps=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
azure-common
azure-mgmt-core
isodate