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