Commit 3742d941 authored by lucasew's avatar lucasew
Browse files

python3Packages.qasync: 0.24.1 -> 0.26.1



Signed-off-by: default avatarlucasew <lucas59356@gmail.com>
parent e0680e03
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -3,23 +3,28 @@
, fetchFromGitHub
, pyqt5
, pytestCheckHook
, poetry-core
}:

buildPythonPackage rec {
  pname = "qasync";
  version = "0.24.1";
  version = "0.26.1";

  format = "pyproject";

  src = fetchFromGitHub {
    owner = "CabbageDevelopment";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-DAzmobw+c29Pt/URGO3bWXHBxgu9bDHhdTUBE9QJDe4=";
    hash = "sha256-vtRmThXKxqof+Rz3Dngtc9tuwL1bPYFHDq4DBRCsrIU=";
  };

  postPatch = ''
    rm qasync/_windows.py # Ignoring it is not taking effect and it will not be used on Linux
  '';

  buildInputs = [ poetry-core ];

  propagatedBuildInputs = [ pyqt5 ];

  checkInputs = [ pytestCheckHook ];