about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-baseconv/default.nix
blob: f9ac014919c2de2f2d99ea44ea5927b3d4ef1101 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}