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