1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5}:
6buildPythonPackage rec {
7 pname = "python-baseconv";
8 version = "1.2.2";
9 format = "setuptools";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0539f8bd0464013b05ad62e0a1673f0ac9086c76b43ebf9f833053527cd9931b";
14 };
15
16 pythonImportsCheck = [ "baseconv" ];
17
18 meta = with lib; {
19 description = "Python module to convert numbers from base 10 integers to base X strings and back again";
20 homepage = "https://github.com/semente/python-baseconv";
21 license = licenses.psfl;
22 maintainers = with maintainers; [ rakesh4g ];
23 };
24}