python3Packages.aiobroadlink: migrate to pyproject (#525018)

This commit is contained in:
Fabian Affolter
2026-05-29 07:15:40 +00:00
committed by GitHub
@@ -3,19 +3,22 @@
buildPythonPackage,
cryptography,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiobroadlink";
version = "0.1.3";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-uTUtDhL9VtWZE+Y6ZJY4prmlE+Yh2UrCg5+eSyAQzMk=";
};
propagatedBuildInputs = [ cryptography ];
build-system = [ setuptools ];
dependencies = [ cryptography ];
# Project has no tests
doCheck = false;
@@ -29,4 +32,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
})