about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-baseconv/default.nix
blob: 6e9acbb7873c7330f725c1e465226a4cded6dd6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
  pname = "python-baseconv";
  version = "1.2.2";
  format = "setuptools";

  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 ];
  };
}