python312Packages.sipyco: 1.4 -> 1.8 (#353265)

This commit is contained in:
OTABI Tomoya 2024-11-04 22:30:17 +09:00 committed by GitHub
commit 53ddb9c7ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,31 +2,33 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
pytestCheckHook,
numpy,
}:
buildPythonPackage rec {
pname = "sipyco";
version = "1.4";
format = "setuptools";
disabled = pythonOlder "3.7";
version = "1.8";
pyproject = true;
src = fetchFromGitHub {
owner = "m-labs";
repo = "sipyco";
rev = "refs/tags/v${version}";
hash = "sha256-sEYWtp11piUIa8YyuTOdFIIJ2GfcrUb+HEzPVKr4hW8=";
hash = "sha256-PPnAyDedUQ7Og/Cby9x5OT9wMkNGTP8GS53V6N/dk4w=";
};
propagatedBuildInputs = [ numpy ];
build-system = [ setuptools ];
dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "sipyco" ];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Simple Python Communications - used by the ARTIQ experimental control package";
mainProgram = "sipyco_rpctool";