Unverified Commit 0f3d57f6 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #280889 from fabaff/aiotractive-bump

python311Packages.aiotractive: 0.5.6 -> 0.5.7 
parents 9a5db269 ca904d84
Loading
Loading
Loading
Loading
+14 −6
Original line number Diff line number Diff line
@@ -3,22 +3,28 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, yarl
}:

buildPythonPackage rec {
  pname = "aiotractive";
  version = "0.5.6";
  format = "setuptools";
  version = "0.5.7";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "zhulik";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-jJw1L1++Z/r+E12tA6zoyyy4MmTpaaVVzKwfI6xcDBQ=";
    repo = "aiotractive";
    rev = "refs/tags/v${version}";
    hash = "sha256-fIdIFG1OpAN1R2L2RryTzYZyqGLo3tqAAkRC8UUFM4k=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    aiohttp
    yarl
@@ -27,7 +33,9 @@ buildPythonPackage rec {
  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [ "aiotractive" ];
  pythonImportsCheck = [
    "aiotractive"
  ];

  meta = with lib; {
    changelog = "https://github.com/zhulik/aiotractive/releases/tag/v${version}";