mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
Merge pull request #240776 from fabaff/hexbytes-bump
python311Packages.hexbytes: 0.3.0 -> 0.3.1
This commit is contained in:
commit
6fa238f481
@ -9,14 +9,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hexbytes";
|
||||
version = "0.3.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
version = "0.3.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ethereum";
|
||||
repo = "hexbytes";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-EDFE5MUc+XMwe8BaXkz/DRchAZbS86X+AcShi5rx83M=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-19oY/VPP6qkxHCkIgpC28fOOYKEYcNbVVGoHJmMmOl8=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user