Commit ec744fd4 authored by Yechiel's avatar Yechiel Committed by Yechiel Worenklein
Browse files

use version agnostic buildPythonApplication

parent 0cf7edeb
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
{
  lib,
  python3,
  fetchFromGitHub,
  python3Packages,
}:

python3.pkgs.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "git-dumper";
  version = "1.0.8";
  pyproject = true;
@@ -17,10 +17,10 @@ python3.pkgs.buildPythonApplication rec {
  };

  build-system = [
    python3.pkgs.setuptools
    python3Packages.setuptools
  ];

  dependencies = with python3.pkgs; [
  dependencies = with python3Packages; [
    beautifulsoup4
    dulwich
    pysocks