Update unified_planning to 1.0.0 and origin github repo

This commit is contained in:
Igor Brylyov 2023-09-05 15:26:04 +03:00
parent c57cd0e0b5
commit 628baff52e
2 changed files with 10 additions and 11 deletions

View file

@ -35,8 +35,7 @@
});
# robossembler custom packages; defined here for share between devShells and packages
blender = pkgs.callPackage ./pkgs/misc/blender
{ inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa CoreGraphics ForceFeedback OpenAL OpenGL; };
blender = pkgs.callPackage ./pkgs/misc/blender { };
bpy = pkgs.python3Packages.callPackage ./pkgs/development/python-modules/bpy { };
pysdf = pkgs.python3Packages.callPackage ./pkgs/development/python-modules/pysdf { };
mayo = pkgs.libsForQt5.callPackage ./pkgs/misc/mayo { };
@ -112,16 +111,16 @@
devShells.default =
let
my-python-packages = p: with p; [
bpy
pysdf
unified-planning
unified-planning
pybullet
scipy
spatialmath
bpy
];
in
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 = [ ];
# Run when the shell is started up

View file

@ -53,14 +53,14 @@ let
in
buildPythonPackage rec {
pname = "unified-planning";
version = "unstable-2023-03-01";
version = "1.0.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "movefasta";
owner = "aiplan4eu";
repo = "unified-planning";
rev = "e58a76e5a128731112155b52dfb03384272eafab";
hash = "sha256-KN7br09YYfhdOsuTvnwArW6yOyZ0sZDCt7B0ymbMVqM=";
rev = "f9eba2544d15b26f91880c1e5e274e8597276ba7";
hash = "sha256-ZBZZQFXCe0q5bPx5wNMCmj5ckGoWi9ybUY41NNtWPLo=";
};
propagatedBuildInputs = (with python3.pkgs; [
@ -81,8 +81,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "The AIPlan4EU Unified Planning Library";
homepage = "https://github.com/movefasta/unified-planning";
homepage = "https://github.com/aiplan4eu/unified-planning";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ movefasta ];
};
}