pythonPackages.cadquery: init at 2.0RC0

This commit is contained in:
Chris Ostrouchov 2019-07-25 10:45:36 -04:00 committed by Marcus Boyd
parent 30f8203dd5
commit a815aafdc7
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyparsing
, opencascade_oce
, pythonocc-core
}:
buildPythonPackage rec {
pname = "cadquery";
version = "2.0RC0";
src = fetchFromGitHub {
owner = "CadQuery";
repo = pname;
rev = version;
sha256 = "1s5arr8w1mn60isaf44diqf72vyscy5ihns3072h16ysbl0b509s";
};
buildInputs = [
opencascade_oce
];
propagatedBuildInputs = [
pyparsing
pythonocc-core
];
meta = with lib; {
description = "Parametric scripting language for creating and traversing CAD models";
homepage = https://github.com/CadQuery/cadquery;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -497,6 +497,8 @@ in {
cachy = callPackage ../development/python-modules/cachy { };
cadquery = callPackage ../development/python-modules/cadquery { };
catalogue = callPackage ../development/python-modules/catalogue { };
cdecimal = callPackage ../development/python-modules/cdecimal { };