python311Packages.hexbytes: add format

- add changelog to meta
- update disabled
This commit is contained in:
Fabian Affolter
2023-06-30 20:35:11 +02:00
parent 709fe22bab
commit 3414f7da25
@@ -10,12 +10,14 @@
buildPythonPackage rec {
pname = "hexbytes";
version = "0.3.1";
disabled = pythonOlder "3.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ethereum";
repo = "hexbytes";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-19oY/VPP6qkxHCkIgpC28fOOYKEYcNbVVGoHJmMmOl8=";
};
@@ -25,11 +27,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "hexbytes" ];
pythonImportsCheck = [
"hexbytes"
];
meta = with lib; {
description = "`bytes` subclass that decodes hex, with a readable console output";
homepage = "https://github.com/ethereum/hexbytes";
changelog = "https://github.com/ethereum/hexbytes/blob/v${version}/docs/release_notes.rst";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};