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:
parent
115316fedb
commit
3f10581973
3 changed files with 13 additions and 5 deletions
12
flake.nix
12
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
|
||||
]))
|
||||
];
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
python3Packages,
|
||||
}:
|
||||
python3Packages.buildPythonPackage {
|
||||
name = "villas-python";
|
||||
name = "villas-node";
|
||||
src = "${src}/python";
|
||||
format = "pyproject";
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue