pythonPackages.cadquery: init at 2.0RC0
This commit is contained in:
parent
30f8203dd5
commit
a815aafdc7
2 changed files with 37 additions and 0 deletions
35
pkgs/development/python-modules/cadquery/default.nix
Normal file
35
pkgs/development/python-modules/cadquery/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue