python2Packages.bip_utils: disable python2

```
  Processing ./bip_utils-1.0.5-py2-none-any.whl
  ERROR: Package 'bip-utils' requires a different Python: 2.7.18 not in '>=3.6'
```
This commit is contained in:
Jonathan Ringer 2020-08-15 15:43:16 -07:00
parent 613d8f1150
commit 164d61f1b7
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, ecdsa
, pysha3
}:
@ -8,6 +9,7 @@
buildPythonPackage rec {
pname = "bip_utils";
version = "1.0.5";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;