Update unified_planning to 1.0.0 and origin github repo
This commit is contained in:
parent
c57cd0e0b5
commit
628baff52e
2 changed files with 10 additions and 11 deletions
|
@ -35,8 +35,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
# robossembler custom packages; defined here for share between devShells and packages
|
# robossembler custom packages; defined here for share between devShells and packages
|
||||||
blender = pkgs.callPackage ./pkgs/misc/blender
|
blender = pkgs.callPackage ./pkgs/misc/blender { };
|
||||||
{ inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa CoreGraphics ForceFeedback OpenAL OpenGL; };
|
|
||||||
bpy = pkgs.python3Packages.callPackage ./pkgs/development/python-modules/bpy { };
|
bpy = pkgs.python3Packages.callPackage ./pkgs/development/python-modules/bpy { };
|
||||||
pysdf = pkgs.python3Packages.callPackage ./pkgs/development/python-modules/pysdf { };
|
pysdf = pkgs.python3Packages.callPackage ./pkgs/development/python-modules/pysdf { };
|
||||||
mayo = pkgs.libsForQt5.callPackage ./pkgs/misc/mayo { };
|
mayo = pkgs.libsForQt5.callPackage ./pkgs/misc/mayo { };
|
||||||
|
@ -112,16 +111,16 @@
|
||||||
devShells.default =
|
devShells.default =
|
||||||
let
|
let
|
||||||
my-python-packages = p: with p; [
|
my-python-packages = p: with p; [
|
||||||
bpy
|
|
||||||
pysdf
|
pysdf
|
||||||
unified-planning
|
unified-planning
|
||||||
pybullet
|
pybullet
|
||||||
scipy
|
scipy
|
||||||
spatialmath
|
spatialmath
|
||||||
|
bpy
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
packages = [ (pkgs.python3.withPackages my-python-packages) pkgs.freecad mayo ];
|
packages = [ (pkgs.python3.withPackages my-python-packages) pkgs.freecad mayo pkgs.bashInteractive ];
|
||||||
buildInputs = [ ];
|
buildInputs = [ ];
|
||||||
|
|
||||||
# Run when the shell is started up
|
# Run when the shell is started up
|
||||||
|
|
|
@ -53,14 +53,14 @@ let
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "unified-planning";
|
pname = "unified-planning";
|
||||||
version = "unstable-2023-03-01";
|
version = "1.0.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "movefasta";
|
owner = "aiplan4eu";
|
||||||
repo = "unified-planning";
|
repo = "unified-planning";
|
||||||
rev = "e58a76e5a128731112155b52dfb03384272eafab";
|
rev = "f9eba2544d15b26f91880c1e5e274e8597276ba7";
|
||||||
hash = "sha256-KN7br09YYfhdOsuTvnwArW6yOyZ0sZDCt7B0ymbMVqM=";
|
hash = "sha256-ZBZZQFXCe0q5bPx5wNMCmj5ckGoWi9ybUY41NNtWPLo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = (with python3.pkgs; [
|
propagatedBuildInputs = (with python3.pkgs; [
|
||||||
|
@ -81,8 +81,8 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "The AIPlan4EU Unified Planning Library";
|
description = "The AIPlan4EU Unified Planning Library";
|
||||||
homepage = "https://github.com/movefasta/unified-planning";
|
homepage = "https://github.com/aiplan4eu/unified-planning";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ movefasta ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue