ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / monkeyhex / default.nix
blob7c10ad743f9c16d255eecf1642cecd216882320f
1 { buildPythonPackage
2 , fetchPypi
3 , future
4 , lib
5 }:
7 buildPythonPackage rec {
8   pname = "monkeyhex";
9   version = "1.7.4";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "a646096dd3114ee8a7c6f30363f38c288ec56c4e032c8fc7e681792b604dd122";
14   };
16   propagatedBuildInputs = [ future ];
18   # No tests in repo.
19   doCheck = false;
21   # Verify import still works.
22   pythonImportsCheck = [ "monkeyhex" ];
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   };