python311Packages.eth-keys: 0.4.0 -> 0.5.0

- use pyproject & setuptools-scm
This commit is contained in:
hellwolf 2024-03-24 18:31:27 +02:00
parent ca83cf515c
commit ad60a863f1
No known key found for this signature in database
GPG Key ID: 1080B4863AD0F5D1
1 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, asn1tools
, coincurve
, eth-hash
@ -16,17 +17,19 @@
buildPythonPackage rec {
pname = "eth-keys";
version = "0.4.0";
format = "setuptools";
disabled = pythonOlder "3.6";
version = "0.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ethereum";
repo = "eth-keys";
rev = "v${version}";
hash = "sha256-jG/jJPM4t3z6UQIdc8L6y0DxZiGx5pVuGL8XwbIt60o=";
hash = "sha256-vyyaLCG2uIHXX0t93DmFq8/u0rZL+nsBsH2gfgjziyo=";
};
build-system = [ setuptools];
propagatedBuildInputs = [
eth-typing
eth-utils