Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

74 lines
1.3 KiB
Nix

{
lib,
atom,
buildPythonPackage,
bytecode,
cppy,
fetchFromGitHub,
kiwisolver,
pegen,
ply,
qtpy,
setuptools,
setuptools-scm,
pythonOlder,
sip,
}:
buildPythonPackage rec {
pname = "enaml";
version = "0.19.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "nucleic";
repo = "enaml";
tag = version;
hash = "sha256-gsNJSK9QcavsiRx2n/S2bbf9ZVsqJXxBiUyBWVIZzj8=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
atom
bytecode
cppy
kiwisolver
pegen
ply
qtpy
sip
];
# qt bindings cannot be found during tests
doCheck = false;
pythonImportsCheck = [
"enaml"
"enaml.applib"
"enaml.core"
"enaml.core.parser"
"enaml.layout"
# qt bindings cannot be found during checking
#"enaml.qt"
#"enaml.qt.docking"
"enaml.scintilla"
"enaml.stdlib"
"enaml.widgets"
"enaml.workbench"
];
meta = with lib; {
description = "Declarative User Interfaces for Python";
homepage = "https://github.com/nucleic/enaml";
changelog = "https://github.com/nucleic/enaml/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ raboof ];
};
}