pythonPackages.base58: disable python2

python2 abandoned upstream
This commit is contained in:
Jonathan Ringer 2020-06-16 13:42:37 -07:00
parent c3597a127a
commit fe1a38a2e2
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
{ stdenv, fetchPypi, buildPythonPackage, pytest, pyhamcrest }:
{ stdenv, fetchPypi, buildPythonPackage, isPy27, pytest, pyhamcrest }:
buildPythonPackage rec {
pname = "base58";
version = "2.0.0";
disabled = isPy27; # python 2 abandoned upstream
src = fetchPypi {
inherit pname version;