dazel: migrate to by-name

This commit is contained in:
Guy Chronister
2026-02-11 15:26:04 -06:00
parent 44a60bdc45
commit 5283690260
2 changed files with 5 additions and 6 deletions
@@ -1,15 +1,16 @@
{
lib,
buildPythonApplication,
python3Packages,
fetchPypi,
setuptools,
}:
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "dazel";
version = "0.0.43";
pyproject = true;
build-system = [ setuptools ];
build-system = [
python3Packages.setuptools
];
src = fetchPypi {
inherit pname version;
-2
View File
@@ -1468,8 +1468,6 @@ with pkgs;
inherit (cue) writeCueValidator;
dazel = python3Packages.callPackage ../development/tools/dazel { };
detect-secrets = with python3Packages; toPythonApplication detect-secrets;
deterministic-host-uname = deterministic-uname.override {