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