mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
pythonPackages.enamlx: init at 0.4.1
This commit is contained in:
parent
8aa47c15cc
commit
002077c0a6
43
pkgs/development/python-modules/enamlx/default.nix
Normal file
43
pkgs/development/python-modules/enamlx/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, enaml
|
||||||
|
, pyqtgraph
|
||||||
|
, pythonocc-core
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "enamlx";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "frmdstryr";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0yh7bw9ibk758bym5w2wk7sifghf1hkxa8sd719q8nsz279cpfc0";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
enaml
|
||||||
|
# Until https://github.com/inkcut/inkcut/issues/105 perhaps
|
||||||
|
pyqtgraph
|
||||||
|
pythonocc-core
|
||||||
|
];
|
||||||
|
|
||||||
|
# qt_occ_viewer test requires enaml.qt.QtOpenGL which got dropped somewhere
|
||||||
|
# between enaml 0.9.0 and 0.10.0
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"enamlx.core"
|
||||||
|
"enamlx.qt"
|
||||||
|
"enamlx.widgets"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/frmdstryr/enamlx";
|
||||||
|
description = "Additional Qt Widgets for Enaml";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ raboof ];
|
||||||
|
};
|
||||||
|
}
|
@ -2484,6 +2484,8 @@ in {
|
|||||||
|
|
||||||
enaml = callPackage ../development/python-modules/enaml { };
|
enaml = callPackage ../development/python-modules/enaml { };
|
||||||
|
|
||||||
|
enamlx = callPackage ../development/python-modules/enamlx { };
|
||||||
|
|
||||||
etelemetry = callPackage ../development/python-modules/etelemetry { };
|
etelemetry = callPackage ../development/python-modules/etelemetry { };
|
||||||
|
|
||||||
eth-hash = callPackage ../development/python-modules/eth-hash { };
|
eth-hash = callPackage ../development/python-modules/eth-hash { };
|
||||||
|
Loading…
Reference in New Issue
Block a user