blob: ad8a7f8dcbd67213bf2c95e8bc8aba4faa6e1cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "python-baseconv";
version = "1.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0539f8bd0464013b05ad62e0a1673f0ac9086c76b43ebf9f833053527cd9931b";
};
pythonImportsCheck = [ "baseconv" ];
meta = {
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 = lib.licenses.psfl;
maintainers = with lib.maintainers; [ rakesh4g ];
};
}
|