7 buildPythonPackage rec {
11 src = fetchFromGitHub {
13 repo = "python-base36";
15 sha256 = "076nmk9s0zkmgs2zqzkaqij5cmzhf4mrhivbb9n6cvz52i1mppr5";
19 substituteInPlace setup.cfg \
20 --replace "[pytest]" "[tool:pytest]" \
21 --replace "--pep8 --cov" ""
24 nativeCheckInputs = [ pytestCheckHook ];
26 pytestFlagsArray = [ "test_base36.py" ];
27 pythonImportsCheck = [ "base36" ];
30 description = "Python implementation for the positional numeral system using 36 as the radix";
31 homepage = "https://github.com/tonyseek/python-base36";
32 license = with licenses; [ mit ];
33 maintainers = with maintainers; [ fab ];