1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

python: Rename package and bump version

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2024-04-09 10:07:03 +02:00
parent 115316fedb
commit 3f10581973
3 changed files with 13 additions and 5 deletions

View file

@ -151,9 +151,17 @@
}; };
python = pkgs.mkShell { python = pkgs.mkShell {
inherit shellHook hardeningDisable packages; inherit shellHook hardeningDisable;
name = "full"; name = "python";
inputsFrom = with pkgs; [villas-python]; inputsFrom = with pkgs; [villas-python];
packages = with pkgs;
packages
++ [
(python3.withPackages (python-pkgs: [
python-pkgs.build
python-pkgs.twine
]))
];
}; };
} }
); );

View file

@ -6,7 +6,7 @@
python3Packages, python3Packages,
}: }:
python3Packages.buildPythonPackage { python3Packages.buildPythonPackage {
name = "villas-python"; name = "villas-node";
src = "${src}/python"; src = "${src}/python";
format = "pyproject"; format = "pyproject";
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [

View file

@ -6,8 +6,8 @@ requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta' build-backend = 'setuptools.build_meta'
[project] [project]
name = 'villas-python' name = 'villas-node'
version = '0.10.3' version = '0.11.1'
description = 'Python support for the VILLASnode simulation-data gateway' description = 'Python support for the VILLASnode simulation-data gateway'
readme = 'README.md' readme = 'README.md'
requires-python = '>=3.10' requires-python = '>=3.10'