diff --git a/flake.nix b/flake.nix index a1addcdf4..7cca67798 100644 --- a/flake.nix +++ b/flake.nix @@ -151,9 +151,17 @@ }; python = pkgs.mkShell { - inherit shellHook hardeningDisable packages; - name = "full"; + inherit shellHook hardeningDisable; + name = "python"; inputsFrom = with pkgs; [villas-python]; + packages = with pkgs; + packages + ++ [ + (python3.withPackages (python-pkgs: [ + python-pkgs.build + python-pkgs.twine + ])) + ]; }; } ); diff --git a/packaging/nix/python.nix b/packaging/nix/python.nix index fcd3346cd..842503bd0 100644 --- a/packaging/nix/python.nix +++ b/packaging/nix/python.nix @@ -6,7 +6,7 @@ python3Packages, }: python3Packages.buildPythonPackage { - name = "villas-python"; + name = "villas-node"; src = "${src}/python"; format = "pyproject"; propagatedBuildInputs = with python3Packages; [ diff --git a/python/pyproject.toml b/python/pyproject.toml index db083505b..bff772669 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -6,8 +6,8 @@ requires = ['setuptools>=61.0'] build-backend = 'setuptools.build_meta' [project] -name = 'villas-python' -version = '0.10.3' +name = 'villas-node' +version = '0.11.1' description = 'Python support for the VILLASnode simulation-data gateway' readme = 'README.md' requires-python = '>=3.10'