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