Skip to content

Commit 84eede1

Browse files
authored
Merge pull request NixOS#331599 from r-ryantm/auto-update/python312Packages.aioymaps
python312Packages.aioymaps: 1.2.4 -> 1.2.5
2 parents 6602aa2 + d23beba commit 84eede1

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,24 @@
44
buildPythonPackage,
55
fetchPypi,
66
pythonOlder,
7+
setuptools,
78
}:
89

910
buildPythonPackage rec {
1011
pname = "aioymaps";
11-
version = "1.2.4";
12-
format = "setuptools";
12+
version = "1.2.5";
13+
pyproject = true;
1314

1415
disabled = pythonOlder "3.6";
1516

1617
src = fetchPypi {
1718
inherit pname version;
18-
hash = "sha256-btBeYP+/ntWpWm5O6ERkRJlhpV8tLe9lrFLYOEB55cY=";
19+
hash = "sha256-tEl2tX/mB8uYTYj1YFDs/2sPXiv6897jCEmsFCWBXYg=";
1920
};
2021

21-
propagatedBuildInputs = [ aiohttp ];
22+
build-system = [ setuptools ];
23+
24+
dependencies = [ aiohttp ];
2225

2326
# Project has no tests
2427
doCheck = false;

0 commit comments

Comments
 (0)