nixpkgs/pkgs/development/python-modules/base58/default.nix

35 lines
661 B
Nix
Raw Normal View History

2021-02-08 17:22:38 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pyhamcrest
, pytest-benchmark
, pytestCheckHook
, pythonOlder
}:
2018-06-26 15:18:17 +01:00
buildPythonPackage rec {
pname = "base58";
2021-02-08 17:22:38 +00:00
version = "2.1.0";
disabled = pythonOlder "3.5";
2018-06-26 15:18:17 +01:00
2019-01-17 14:27:40 +00:00
src = fetchPypi {
inherit pname version;
2021-02-08 17:22:38 +00:00
sha256 = "sha256-FxpUe0o8YeGuOAciSm967HXjZMQ5XnViZJ1zNXaAAaI=";
2018-06-26 15:18:17 +01:00
};
2021-02-08 17:22:38 +00:00
checkInputs = [
pyhamcrest
pytest-benchmark
pytestCheckHook
];
pythonImportsCheck = [ "base58" ];
2018-06-26 15:18:17 +01:00
meta = with lib; {
2018-06-26 15:18:17 +01:00
description = "Base58 and Base58Check implementation";
homepage = "https://github.com/keis/base58";
2018-06-26 15:18:17 +01:00
license = licenses.mit;
maintainers = with maintainers; [ nyanloutre ];
};
}