Skip to content

Commit 543e367

Browse files
authored
python313Packages.aioinflux: modernize (#464083)
2 parents d5ac87a + 50a5dd8 commit 543e367

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

pkgs/development/python-modules/aioinflux/default.nix

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,23 @@
44
fetchPypi,
55
aiohttp,
66
ciso8601,
7+
setuptools,
78
pandas,
89
}:
910

1011
buildPythonPackage rec {
1112
pname = "aioinflux";
1213
version = "0.9.0";
13-
format = "setuptools";
14+
pyproject = true;
1415

1516
src = fetchPypi {
1617
inherit pname version;
17-
sha256 = "1jy5mcg9wdz546s9wdwsgkxhm2ac4dmphd9vz243db39j1m0a3bj";
18+
hash = "sha256-cg0FapBprDaI+Ds1eGsjTIkK+3yaN560IeU3nh6rxcs=";
1819
};
1920

20-
propagatedBuildInputs = [
21+
build-system = [ setuptools ];
22+
23+
dependencies = [
2124
aiohttp
2225
ciso8601
2326
pandas
@@ -31,6 +34,7 @@ buildPythonPackage rec {
3134
meta = with lib; {
3235
description = "Asynchronous Python client for InfluxDB";
3336
homepage = "https://github.com/gusutabopb/aioinflux";
37+
changelog = "https://github.com/gusutabopb/aioinflux/releases/tag/v${version}";
3438
license = licenses.mit;
3539
maintainers = with maintainers; [
3640
liamdiprose

0 commit comments

Comments
 (0)