https://github.com/pyapp-kit/psygnal/blob/v0.14.0/CHANGELOG.md This commit was automatically generated using update-python-libraries.
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatch-vcs,
|
|
hatchling,
|
|
mypy-extensions,
|
|
numpy,
|
|
pydantic,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
toolz,
|
|
typing-extensions,
|
|
wrapt,
|
|
attrs,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "psygnal";
|
|
version = "0.14.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyapp-kit";
|
|
repo = "psygnal";
|
|
tag = "v${version}";
|
|
hash = "sha256-RQ53elonwvna5UDVell3JI1dcZSMHREyB51r+ddsW2M=";
|
|
};
|
|
|
|
build-system = [
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
dependencies = [
|
|
mypy-extensions
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
numpy
|
|
pydantic
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
toolz
|
|
wrapt
|
|
attrs
|
|
];
|
|
|
|
pytestFlags = [
|
|
"-Wignore::pydantic.warnings.PydanticDeprecatedSince211"
|
|
];
|
|
|
|
pythonImportsCheck = [ "psygnal" ];
|
|
|
|
meta = with lib; {
|
|
description = "Implementation of Qt Signals";
|
|
homepage = "https://github.com/pyapp-kit/psygnal";
|
|
changelog = "https://github.com/pyapp-kit/psygnal/blob/${src.tag}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ SomeoneSerge ];
|
|
};
|
|
}
|