mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
pythonPackages.base58: disable python2
python2 abandoned upstream
This commit is contained in:
parent
c3597a127a
commit
fe1a38a2e2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user