Skip to content

Commit

Permalink
python312Packages.eth-keyfile: 0.8.0 -> 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianFranzen authored and hellwolf committed Jan 14, 2025
1 parent 6731d49 commit 448b481
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pkgs/development/python-modules/eth-keyfile/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,19 @@

buildPythonPackage rec {
pname = "eth-keyfile";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
version = "0.8.1";

src = fetchFromGitHub {
owner = "ethereum";
repo = "eth-keyfile";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-797yhHuU9/lm96YKxl3SZ5IQAwDxDSYkLkiBdAHh0Uk=";
hash = "sha256-HufsN3aXdQErcQmnG2PZnEm5joqpy4f8IWNm3VrzJSY=";
};

build-system = [ setuptools ];

propagatedBuildInputs = [
dependencies = [
eth-keys
eth-utils
pycryptodome
Expand All @@ -36,10 +34,11 @@ buildPythonPackage rec {

pythonImportsCheck = [ "eth_keyfile" ];

meta = with lib; {
meta = {
changelog = "https://github.com/ethereum/eth-keyfile/blob/v${version}/CHANGELOG.rst";
description = "Tools for handling the encrypted keyfile format used to store private keys";
homepage = "https://github.com/ethereum/eth-keyfile";
license = licenses.mit;
maintainers = [ ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ FlorianFranzen ];
};
}

0 comments on commit 448b481

Please sign in to comment.