python.pkgs.base58: 1.0.0 -> 1.0.3

This commit is contained in:
Robert Schütz 2019-01-17 15:27:40 +01:00
parent c35322ba6d
commit d428e37cee

View File

@ -1,17 +1,15 @@
{ stdenv, fetchFromGitHub, buildPythonPackage, pytest, pyhamcrest }: { stdenv, fetchPypi, buildPythonPackage, pytest, pyhamcrest }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "base58"; pname = "base58";
version = "1.0.0"; version = "1.0.3";
src = fetchFromGitHub { src = fetchPypi {
owner = "keis"; inherit pname version;
repo = "base58"; sha256 = "9a793c599979c497800eb414c852b80866f28daaed5494703fc129592cc83e60";
rev = "v${version}";
sha256 = "0f8isdpvbgw0sqn9bj7hk47y8akpvdl8sn6rkszla0xb92ywj0f6";
}; };
buildInputs = [ pytest pyhamcrest ]; checkInputs = [ pytest pyhamcrest ];
checkPhase = '' checkPhase = ''
pytest pytest
''; '';