Commit 8eadba8a authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.azure-mgmt-kusto: refactor

parent 955f206c
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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