python311Packages.azure-appconfiguration: refactor

This commit is contained in:
Fabian Affolter 2024-04-13 21:38:43 +02:00
parent 5774fe4232
commit 0e6226eb02

View File

@ -1,15 +1,16 @@
{ lib { lib
, pythonOlder
, isodate
, fetchPypi
, buildPythonPackage
, azure-core , azure-core
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-appconfiguration"; pname = "azure-appconfiguration";
version = "1.6.0"; version = "1.6.0";
format = "setuptools"; pyporject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -18,7 +19,11 @@ buildPythonPackage rec {
hash = "sha256-z2KKPh6mZDR5ZDzSRt2kZO3Eq3hXQzOaao/oCbwTf+w="; hash = "sha256-z2KKPh6mZDR5ZDzSRt2kZO3Eq3hXQzOaao/oCbwTf+w=";
}; };
propagatedBuildInputs = [ build-system = [
setuptools
];
dependencies = [
azure-core azure-core
isodate isodate
]; ];