pythonPackages.python-baseconv: init at 1.2.2

This commit is contained in:
Rakesh Gupta 2020-03-28 14:16:22 +05:30 committed by Jon
parent b9b8388e4a
commit 9449ee6c01
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ 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 ];
};
}

View file

@ -923,6 +923,8 @@ in {
mpi = pkgs.openmpi;
};
python-baseconv = callPackage ../development/python-modules/python-baseconv { };
pycognito = callPackage ../development/python-modules/pycognito { };
python-mpv-jsonipc = callPackage ../development/python-modules/python-mpv-jsonipc { };