python3Packages.advantage-air: migrate to pyproject (#525015)

This commit is contained in:
Yohann Boniface
2026-06-03 21:15:40 +00:00
committed by GitHub
@@ -3,20 +3,23 @@
aiohttp,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "advantage-air";
version = "0.4.4";
format = "setuptools";
pyproject = true;
src = fetchPypi {
pname = "advantage_air";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-4rRR9IxzH5EiYfWzWYeyCwoLB2LetBVyH7L3nkvp+gA=";
};
propagatedBuildInputs = [ aiohttp ];
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# No tests
doCheck = false;
@@ -29,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jamiemagee ];
};
}
})