nixpkgs/pkgs/development/python-modules/py-multihash/default.nix
Luflosi 7a6d18c8e7
python3Packages.py-multihash: 1.0.0 -> 2.0.1
https://github.com/multiformats/py-multihash/releases/tag/v2.0.1

The `variants` package is not in the list of requirements for py-multihash, so remove it.
Switch to `pytestCheckHook` for the tests instead of using `pytest`.
Also slightly change the Python version requirements check.
2021-02-09 00:47:04 +01:00

49 lines
851 B
Nix

{ base58
, buildPythonPackage
, fetchFromGitHub
, lib
, morphys
, pytest-runner
, pytestCheckHook
, pythonOlder
, six
, varint
}:
buildPythonPackage rec {
pname = "py-multihash";
version = "2.0.1";
disabled = pythonOlder "3.4";
src = fetchFromGitHub {
owner = "multiformats";
repo = pname;
rev = "v${version}";
sha256 = "sha256-z1lmSypGCMFWJNzNgV9hx/IStyXbpd5jvrptFpewuOA=";
};
nativeBuildInputs = [
pytest-runner
];
propagatedBuildInputs = [
base58
morphys
six
varint
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "multihash" ];
meta = with lib; {
description = "Self describing hashes - for future proofing";
homepage = "https://github.com/multiformats/py-multihash";
license = licenses.mit;
maintainers = with maintainers; [ rakesh4g ];
};
}