depot/third_party/nixpkgs/pkgs/development/python-modules/psygnal/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

60 lines
1.1 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 ];
};
}