mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 09:56:13 +03:00
python.pkgs.base58: 1.0.0 -> 1.0.3
This commit is contained in:
parent
c35322ba6d
commit
d428e37cee
@ -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
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user