mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
47 lines
967 B
Nix
47 lines
967 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, enaml
|
|
, pyqtgraph
|
|
, pythonocc-core
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enamlx";
|
|
version = "0.6.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "frmdstryr";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-LHqOZ1uLWFbUeQAGKoMH9GljhRq1K4RTVWzgV/pt3g8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
enaml
|
|
# Until https://github.com/inkcut/inkcut/issues/105 perhaps
|
|
pyqtgraph
|
|
pythonocc-core
|
|
typing-extensions
|
|
];
|
|
|
|
# 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 ];
|
|
};
|
|
}
|