1{ lib
2, buildPythonPackage
3, fetchPypi
4, hypothesis
5}:
6
7buildPythonPackage rec {
8 pname = "justbases";
9 version = "0.15";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-vQEfC8Z7xMM/fhBG6jSuhLEP/Iece5Rje1yqbpjVuPg=";
14 };
15
16 checkInputs = [ hypothesis ];
17
18 meta = with lib; {
19 description = "conversion of ints and rationals to any base";
20 homepage = "https://pythonhosted.org/justbases";
21 license = licenses.lgpl2Plus;
22 maintainers = with maintainers; [ nickcao ];
23 };
24}