12 buildPythonPackage rec {
13 pname = "py-multihash";
15 format = "setuptools";
17 disabled = pythonOlder "3.4";
19 src = fetchFromGitHub {
20 owner = "multiformats";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-z1lmSypGCMFWJNzNgV9hx/IStyXbpd5jvrptFpewuOA=";
27 substituteInPlace setup.py \
28 --replace "'pytest-runner', " ""
31 propagatedBuildInputs = [
42 pythonImportsCheck = [
47 description = "Self describing hashes - for future proofing";
48 homepage = "https://github.com/multiformats/py-multihash";
49 license = licenses.mit;
50 maintainers = with maintainers; [ rakesh4g ];