Unverified Commit 350c3054 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #140934 from r-ryantm/auto-update/python38Packages.browser-cookie3

python38Packages.browser-cookie3: 0.12.1 -> 0.13.0
parents fc8fa915 e6cd387e
Loading
Loading
Loading
Loading
+25 −6
Original line number Diff line number Diff line
{ lib, fetchPypi, buildPythonPackage, isPy3k, lz4, keyring, pbkdf2, pycryptodome, pyaes}:
{ lib
, fetchPypi
, buildPythonPackage
, isPy3k
, lz4
, keyring
, pbkdf2
, pycryptodome
, pyaes
}:

buildPythonPackage rec {
  pname = "browser-cookie3";
  version = "0.12.1";
  version = "0.13.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "72c1e6aa6a98adab3a6797b889664bdbfddc287474dd8e774da37a854ec32185";
    sha256 = "9f8e5ddf5a6641a1fdca12d82b0923777ba59a988b68c9bcf358bfb7c42ef25b";
  };

  disabled = !isPy3k;

  propagatedBuildInputs = [ lz4 keyring pbkdf2 pyaes pycryptodome ];
  propagatedBuildInputs = [
    lz4
    keyring
    pbkdf2
    pyaes
    pycryptodome
  ];

  # No tests implemented
  doCheck = false;

  pythonImportsCheck = [
    "browser_cookie3"
  ];

  meta = with lib; {
    description = "Loads cookies from your browser into a cookiejar object";
    maintainers = with maintainers; [ borisbabic ];
    homepage = "https://github.com/borisbabic/browser_cookie3";
    license = licenses.gpl3;
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ borisbabic ];
  };
}