12 buildPythonPackage rec {
13 pname = "py-multihash";
15 format = "setuptools";
17 src = fetchFromGitHub {
18 owner = "multiformats";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-z1lmSypGCMFWJNzNgV9hx/IStyXbpd5jvrptFpewuOA=";
25 substituteInPlace setup.py \
26 --replace "'pytest-runner', " ""
29 propagatedBuildInputs = [
36 nativeCheckInputs = [ pytestCheckHook ];
38 pythonImportsCheck = [ "multihash" ];
41 description = "Self describing hashes - for future proofing";
42 homepage = "https://github.com/multiformats/py-multihash";
43 license = licenses.mit;
44 maintainers = with maintainers; [ rakesh4g ];