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