python312Packages.rzpipe: refactor

This commit is contained in:
Fabian Affolter 2024-10-24 10:06:40 +02:00
parent 1e687cd87c
commit 2230ebe547

View File

@ -3,20 +3,23 @@
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "rzpipe";
version = "0.6.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-py4oiNp+WUcOGHn2AdHyIpgV8BsI8A1gtJi2joi1Wxc=";
};
build-system = [ setuptools ];
# No native rz_core library
doCheck = false;