depot/third_party/nixpkgs/pkgs/development/python-modules/monkeyhex/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

32 lines
753 B
Nix

{
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 = with lib; {
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 = licenses.mit;
maintainers = [ maintainers.pamplemousse ];
};
}