pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / monkeyhex / default.nix
blobc07fe91a8c74b0fc4b435d40fdfc11ff9b806901
2   buildPythonPackage,
3   fetchPypi,
4   future,
5   lib,
6 }:
8 buildPythonPackage rec {
9   pname = "monkeyhex";
10   version = "1.7.4";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "a646096dd3114ee8a7c6f30363f38c288ec56c4e032c8fc7e681792b604dd122";
16   };
18   propagatedBuildInputs = [ future ];
20   # No tests in repo.
21   doCheck = false;
23   # Verify import still works.
24   pythonImportsCheck = [ "monkeyhex" ];
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   };