Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchPypi, buildPythonPackage, isPy3k, keyring, pbkdf2, pyaes}: 2buildPythonPackage rec { 3 pname = "browser-cookie3"; 4 version = "0.11.1"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "5d1f825fc9cc6f98fe0ee3f97cdb4947c22d59ac8a11643da5837ebd8c873f05"; 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 broken = true; 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}