Commit a3f309b6 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent adc41e1e
Loading
Loading
Loading
Loading
+7 −12
Original line number Diff line number Diff line
@@ -8,30 +8,25 @@

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

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-oOX5Z8WXgNJYsgXqHE2CsXdDnA3XmDF6axD1D318bPQ=";
    pname = "devpi_client";
    inherit version;
    hash = "sha256-5aF6EIFnhfywDeAfWSN+eZUpaO6diPCP5QHT11Y/IQI=";
  };

  postPatch = ''
    substituteInPlace tox.ini \
      --replace "--flake8" ""
  '';

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

  buildInputs = [
    glibcLocales
  ];

  propagatedBuildInputs = with python3.pkgs; [
  dependencies = with python3.pkgs; [
    build
    check-manifest
    devpi-common
@@ -74,10 +69,10 @@ python3.pkgs.buildPythonApplication rec {

  meta = with lib; {
    description = "Client for devpi, a pypi index server and packaging meta tool";
    mainProgram = "devpi";
    homepage = "http://doc.devpi.net";
    changelog = "https://github.com/devpi/devpi/blob/client-${version}/client/CHANGELOG";
    license = licenses.mit;
    maintainers = with maintainers; [ lewo makefu ];
    mainProgram = "devpi";
  };
}