about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bech32/default.nix
blob: 53c7bc5ec91d128e6492a9329424ac8230f48876 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pytestCheckHook,
  pythonOlder,
}:
buildPythonPackage rec {
  pname = "bech32";
  version = "1.2.0";
  format = "setuptools";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-fW24IUYDvXhx/PpsCCbvaLhbCr2Q+iHChanF4h0r2Jk=";
  };

  meta = with lib; {
    homepage = "https://pypi.org/project/bech32/";
    license = with licenses; [ mit ];
  };
}