Commit cfb5ebb1 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent fb561a24
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -12,15 +12,16 @@
, pytest-trio
, pytestCheckHook
, requests
, setuptools
, six
, trio
, typing-extensions
}:

buildPythonPackage rec {
  version = "1.28.0";
  version = "1.30.0";
  pname = "azure-core";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -28,10 +29,13 @@ buildPythonPackage rec {

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    hash = "sha256-6e78Zvwf3lbatvBNTl0SxgdU1an6Sb3P2FNPyW7ZNr0=";
    hash = "sha256-bzp4g+8YRyL2vZlyYu3a+Az+fls+DKqvjbFpVpWJPTU=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    requests
    six
@@ -99,8 +103,8 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Microsoft Azure Core Library for Python";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CHANGELOG.md";
    homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core";
    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-core_${version}/sdk/core/azure-core/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };