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