python3Packages.pyrisco: 0.7.0 -> 0.8.0

https://github.com/OnFreund/pyrisco/releases/tag/v0.8.0
This commit is contained in:
Martin Weinelt 2026-07-04 20:51:35 +02:00
commit a572026926
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -4,25 +4,29 @@
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
}:
buildPythonPackage (finalAttrs: {
pname = "pyrisco";
version = "0.7.0";
version = "0.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "OnFreund";
repo = "pyrisco";
tag = "v${finalAttrs.version}";
hash = "sha256-moFKikAIBLWfkpADjNKqZd3jAg5LPapubB1pGmx8OPo=";
hash = "sha256-tzCwimkSLazD6LtimFUcRjOvnvSlYY1MpJLZ2u4WgUg=";
};
build-system = [ setuptools ];
build-system = [
setuptools
setuptools-scm
];
dependencies = [ aiohttp ];
# Project has no tests
# All tests require cloud access
doCheck = false;
pythonImportsCheck = [ "pyrisco" ];