My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-baseconv/default.nix

22 lines
570 B

{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "python-baseconv";
version = "1.2.2";
src = fetchPypi {
inherit pname version ;
sha256 = "0539f8bd0464013b05ad62e0a1673f0ac9086c76b43ebf9f833053527cd9931b";
};
pythonImportsCheck = [ "baseconv" ];
meta = with lib; {
description = "Python module to convert numbers from base 10 integers to base X strings and back again";
homepage = "https://github.com/semente/python-baseconv";
license = licenses.psfl;
maintainers = with maintainers; [ rakesh4g ];
};
}