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

25 lines
622 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, isPy27, pytest, pyhamcrest }:
2018-06-26 15:18:17 +01:00
buildPythonPackage rec {
pname = "base58";
2020-07-31 09:56:36 +01:00
version = "2.0.1";
disabled = isPy27; # python 2 abandoned upstream
2018-06-26 15:18:17 +01:00
2019-01-17 14:27:40 +00:00
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:36 +01:00
sha256 = "365c9561d9babac1b5f18ee797508cd54937a724b6e419a130abad69cec5ca79";
2018-06-26 15:18:17 +01:00
};
2019-01-17 14:27:40 +00:00
checkInputs = [ pytest pyhamcrest ];
2018-06-26 15:18:17 +01:00
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
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 ];
};
}