Unverified Commit fcf5abfa authored by natsukium's avatar natsukium
Browse files
parent ebe58214
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -8,12 +8,12 @@

python3.pkgs.buildPythonApplication rec {
  pname = "devpi-client";
  version = "6.0.3";
  version = "7.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-csdQUxnopH+kYtoqdvyXKNW3fGkQNSREJYxjes9Dgi8=";
    hash = "sha256-AI/GNubb7+nwz/vM6v/JoUtWup6rBJieKXtFQzrdPkE=";
  };

  postPatch = ''
@@ -21,8 +21,10 @@ python3.pkgs.buildPythonApplication rec {
      --replace "--flake8" ""
  '';

  nativeBuildInputs = [
    python3.pkgs.setuptools
  nativeBuildInputs = with python3.pkgs; [
    setuptools
    setuptools-changelog-shortener
    wheel
  ];

  buildInputs = [
@@ -30,17 +32,13 @@ python3.pkgs.buildPythonApplication rec {
  ];

  propagatedBuildInputs = with python3.pkgs; [
    argon2-cffi-bindings
    build
    check-manifest
    devpi-common
    iniconfig
    pep517
    pkginfo
    pluggy
    platformdirs
    py
    setuptools
  ];

  nativeCheckInputs = [