python313Packages.siosocks: refactor

This commit is contained in:
Fabian Affolter
2025-04-15 07:59:00 +02:00
parent 3e25744694
commit e19d435a1c
@@ -4,15 +4,17 @@
fetchPypi,
pytest-asyncio,
pytest-trio,
pytest-mock,
pytestCheckHook,
pythonOlder,
setuptools,
trio,
}:
buildPythonPackage rec {
pname = "siosocks";
version = "0.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -21,10 +23,13 @@ buildPythonPackage rec {
hash = "sha256-uja79vWhPYOhhTUBIh+XpS4GnrYJy0/XpDXXQjnyHWM=";
};
propagatedBuildInputs = [ trio ];
build-system = [ setuptools ];
dependencies = [ trio ];
nativeCheckInputs = [
pytest-asyncio
pytest-mock
pytestCheckHook
pytest-trio
];