nixpkgs/pkgs/development/python-modules/psygnal/default.nix
2024-04-04 12:21:50 +00:00

62 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hatch-vcs
, hatchling
, mypy-extensions
, numpy
, pydantic
, pytestCheckHook
, pythonOlder
, toolz
, typing-extensions
, wrapt
, attrs
}:
buildPythonPackage rec {
pname = "psygnal";
version = "0.11.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pyapp-kit";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-LZkYlqplapV2jD5yV5Co8zhGdHP0dqkIAoIj1AFETbA=";
};
buildInputs = [
hatch-vcs
hatchling
];
propagatedBuildInputs = [
mypy-extensions
typing-extensions
];
nativeCheckInputs = [
numpy
pydantic
pytestCheckHook
toolz
wrapt
attrs
];
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/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ SomeoneSerge ];
};
}