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