8 buildPythonPackage rec {
11 format = "setuptools";
13 src = fetchFromGitHub {
15 repo = "python-base36";
17 sha256 = "076nmk9s0zkmgs2zqzkaqij5cmzhf4mrhivbb9n6cvz52i1mppr5";
21 substituteInPlace setup.cfg \
22 --replace "[pytest]" "[tool:pytest]" \
23 --replace "--pep8 --cov" ""
26 nativeCheckInputs = [ pytestCheckHook ];
28 pytestFlagsArray = [ "test_base36.py" ];
29 pythonImportsCheck = [ "base36" ];
32 description = "Python implementation for the positional numeral system using 36 as the radix";
33 homepage = "https://github.com/tonyseek/python-base36";
34 license = with licenses; [ mit ];
35 maintainers = with maintainers; [ fab ];