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

35 lines
674 B
Nix
Raw Normal View History

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