1{ buildPythonPackage
2, fetchPypi
3, future
4, lib
5}:
6
7buildPythonPackage rec {
8 pname = "monkeyhex";
9 version = "1.7.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "e2add1f7f1f620be9ccec0618342e6a9e47de50e0d2252628bffd452bfd3762b";
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}