Merge pull request #140934 from r-ryantm/auto-update/python38Packages.browser-cookie3
python38Packages.browser-cookie3: 0.12.1 -> 0.13.0
This commit is contained in:
commit
350c305473
1 changed files with 25 additions and 6 deletions
|
@ -1,25 +1,44 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue