at 18.09-beta 568 B view raw
1{ lib, fetchPypi, buildPythonPackage, pytest }: 2 3buildPythonPackage rec { 4 pname = "rlp"; 5 version = "1.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "040fb5172fa23d27953a886c40cac989fc031d0629db934b5a9edcd2fb28df1e"; 10 }; 11 12 checkInputs = [ pytest ]; 13 propagatedBuildInputs = [ ]; 14 15 meta = { 16 description = "A package for encoding and decoding data in and from Recursive Length Prefix notation"; 17 homepage = "https://github.com/ethereum/pyrlp"; 18 license = lib.licenses.mit; 19 maintainers = with lib.maintainers; [ gebner ]; 20 }; 21}