nixpkgs/pkgs/development/python-modules/eth-keyfile/default.nix
hellwolf ca83cf515c
python311Packages.eth-keyfile: 0.6.0 -> 0.8.0
- use pyproject & setuptools-scm
- remove the setuptools-markdown post patch
2024-04-18 16:36:27 +03:00

47 lines
912 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, eth-keys
, eth-utils
, pycryptodome
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "eth-keyfile";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ethereum";
repo = "eth-keyfile";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-797yhHuU9/lm96YKxl3SZ5IQAwDxDSYkLkiBdAHh0Uk=";
};
build-system = [ setuptools];
propagatedBuildInputs = [
eth-keys
eth-utils
pycryptodome
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "eth_keyfile" ];
meta = with lib; {
description = "Tools for handling the encrypted keyfile format used to store private keys";
homepage = "https://github.com/ethereum/eth-keyfile";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}