evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / bech32 / default.nix
blobfaed8e5615ff4c959177a79822615417ea43f088
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
7 buildPythonPackage rec {
8   pname = "bech32";
9   version = "1.2.0";
10   format = "setuptools";
12   disabled = pythonOlder "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-fW24IUYDvXhx/PpsCCbvaLhbCr2Q+iHChanF4h0r2Jk=";
17   };
19   meta = with lib; {
20     homepage = "https://pypi.org/project/bech32/";
21     license = with licenses; [ mit ];
22   };