1{ 2 buildPythonPackage, 3 fetchPypi, 4 future, 5 lib, 6}: 7 8buildPythonPackage rec { 9 pname = "monkeyhex"; 10 version = "1.7.4"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "a646096dd3114ee8a7c6f30363f38c288ec56c4e032c8fc7e681792b604dd122"; 16 }; 17 18 propagatedBuildInputs = [ future ]; 19 20 # No tests in repo. 21 doCheck = false; 22 23 # Verify import still works. 24 pythonImportsCheck = [ "monkeyhex" ]; 25 26 meta = with lib; { 27 description = "Small library to assist users of the python shell who work in contexts where printed numbers are more usefully viewed in hexadecimal"; 28 homepage = "https://github.com/rhelmot/monkeyhex"; 29 license = licenses.mit; 30 maintainers = [ maintainers.pamplemousse ]; 31 }; 32}