also rename project/pypi name

This commit is contained in:
Jörg Thalheim
2023-08-08 14:20:45 +02:00
parent 4296ef92a9
commit 4cf82f3596
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ let
checkPython = python3.withPackages (_ps: dependencies ++ testDependencies);
in
python3.pkgs.buildPythonPackage {
name = "clan";
name = "clan-cli";
src = lib.cleanSource ./.;
format = "pyproject";
nativeBuildInputs = [

View File

@@ -3,7 +3,7 @@ requires = [ "setuptools" ]
build-backend = "setuptools.build_meta"
[project]
name = "clan"
name = "clan-cli"
description = "cLAN CLI tool"
dynamic = [ "version" ]
scripts = { clan = "clan_cli:main" }