Unverified Commit 607a747b authored by natsukium's avatar natsukium
Browse files
parent 356189a6
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildPythonApplication, isPy27
{ lib, fetchFromGitHub, buildPythonApplication
, pythonOlder
, aiohttp
, appdirs
, beautifulsoup4
@@ -24,16 +25,16 @@

buildPythonApplication rec {
  pname = "devpi-server";
  version = "6.7.0";
  version = "6.9.2";
  pyproject = true;

  disabled = isPy27;
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "devpi";
    repo = "devpi";
    rev = "server-${version}";
    hash = "sha256-tevQ/Ocusz2PythGnedP6r4xARgetVosAc8uTD49H3M=";
    hash = "sha256-HnxWLxOK+6B8O/7lpNjuSUQ0Z7NOmV2n01WFyjow6oU=";
  };

  sourceRoot = "${src.name}/server";