Unverified Commit 52836902 authored by Guy Chronister's avatar Guy Chronister
Browse files

dazel: migrate to by-name

parent 44a60bdc
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
{
  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;
+0 −2
Original line number Diff line number Diff line
@@ -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 {