nixpkgs/pkgs/development/python-modules/enaml/default.nix

59 lines
1018 B
Nix
Raw Normal View History

2020-07-14 07:23:21 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, atom
, ply
, kiwisolver
, qtpy
, sip_4
2020-07-14 07:23:21 +01:00
, cppy
, bytecode
}:
buildPythonPackage rec {
pname = "enaml";
version = "0.14.1";
2020-07-14 07:23:21 +01:00
src = fetchFromGitHub {
owner = "nucleic";
repo = pname;
rev = version;
sha256 = "sha256-QfI7cwl2c5HOlFNNdG+oOv48X9jJZnZNU/kWgutWe6k=";
2020-07-14 07:23:21 +01:00
};
# 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"
];
propagatedBuildInputs = [
atom
ply
kiwisolver
qtpy
sip_4
2020-07-14 07:23:21 +01:00
cppy
bytecode
];
meta = with lib; {
homepage = "https://github.com/nucleic/enaml";
description = "Declarative User Interfaces for Python";
license = licenses.bsd3;
maintainers = with maintainers; [ raboof ];
};
}