Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 690 B view raw
1{ lib, fetchPypi, buildPythonPackage, isPy3k, lz4, keyring, pbkdf2, pycryptodome, pyaes}: 2 3buildPythonPackage rec { 4 pname = "browser-cookie3"; 5 version = "0.12.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "5f26422091ad0e97375d565f8fbacfaf314d0722db35c921635eab23686e4fc4"; 10 }; 11 12 disabled = !isPy3k; 13 14 propagatedBuildInputs = [ lz4 keyring pbkdf2 pyaes pycryptodome ]; 15 16 # No tests implemented 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Loads cookies from your browser into a cookiejar object"; 21 maintainers = with maintainers; [ borisbabic ]; 22 homepage = "https://github.com/borisbabic/browser_cookie3"; 23 license = licenses.gpl3; 24 }; 25}