Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / monkeyhex / default.nix
blob821a6765bb6f111f31995dec747d5f1941e70af2
1 { buildPythonPackage
2 , fetchPypi
3 , future
4 , lib
5 }:
7 buildPythonPackage rec {
8   pname = "monkeyhex";
9   version = "1.7.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "a646096dd3114ee8a7c6f30363f38c288ec56c4e032c8fc7e681792b604dd122";
15   };
17   propagatedBuildInputs = [ future ];
19   # No tests in repo.
20   doCheck = false;
22   # Verify import still works.
23   pythonImportsCheck = [ "monkeyhex" ];
25   meta = with lib; {
26     description = "A small library to assist users of the python shell who work in contexts where printed numbers are more usefully viewed in hexadecimal";
27     homepage = "https://github.com/rhelmot/monkeyhex";
28     license = licenses.mit;
29     maintainers = [ maintainers.pamplemousse ];
30   };