nixpkgs/pkgs/applications/graphics/cq-editor/default.nix

60 lines
1.1 KiB
Nix
Raw Normal View History

2019-08-08 01:58:41 +00:00
{ lib
, mkDerivationWith
, python3Packages
, fetchFromGitHub
, wrapQtAppsHook
2019-08-08 01:58:41 +00:00
}:
mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "cq-editor";
2020-06-06 04:56:35 +00:00
version = "0.1.1";
2019-08-08 01:58:41 +00:00
src = fetchFromGitHub {
owner = "CadQuery";
repo = "CQ-editor";
rev = version;
2020-06-06 04:56:35 +00:00
sha256 = "1970izjaa60r5cg9i35rzz9lk5c5d8q1vw1rh2skvfbf63z1hnzv";
2019-08-08 01:58:41 +00:00
};
propagatedBuildInputs = with python3Packages; [
cadquery
Logbook
pyqt5
pyparsing
pyqtgraph
2020-03-19 01:33:28 +00:00
spyder_3
2019-08-08 01:58:41 +00:00
pathpy
qtconsole
requests
];
nativeBuildInputs = [ wrapQtAppsHook ];
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
2019-08-08 01:58:41 +00:00
'';
checkInputs = with python3Packages; [
pytest
pytest-xvfb
pytest-mock
pytestcov
pytest-repeat
pytest-qt
];
checkPhase = ''
pytest --no-xvfb
'';
# requires X server
doCheck = false;
meta = with lib; {
description = "CadQuery GUI editor based on PyQT";
homepage = "https://github.com/CadQuery/CQ-editor";
license = licenses.asl20;
maintainers = with maintainers; [ costrouc marcus7070 ];
};
}