f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
60 lines
1.1 KiB
Nix
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.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyapp-kit";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-eGJWtmw2Ps3jII4T8E6s3djzxfqcSdyPemvejal0cn4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|