python312Packages.rzpipe: refactor (#350894)

This commit is contained in:
Fabian Affolter 2024-10-24 18:40:41 +02:00 committed by GitHub
commit ac934fe4e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;