14 buildPythonPackage rec {
15 pname = "py-multiaddr";
17 format = "setuptools";
18 disabled = pythonOlder "3.5";
20 src = fetchFromGitHub {
21 owner = "multiformats";
24 hash = "sha256-cGM7iYQPP+UOkbTxRhzuED0pkcydFCO8vpx9wTc0/HI=";
28 substituteInPlace setup.py --replace "'pytest-runner'," ""
31 propagatedBuildInputs = [
44 pythonImportsCheck = [ "multiaddr" ];
47 description = "Composable and future-proof network addresses";
48 homepage = "https://github.com/multiformats/py-multiaddr";
49 license = with licenses; [ mit asl20 ];
50 maintainers = with maintainers; [ Luflosi ];