python.pkgs.secp256k1: 0.12.1 -> 0.13.2

This commit is contained in:
Frederik Rietdijk 2018-01-20 14:57:20 +01:00
parent 25d1d4944a
commit 21a736bb64

View File

@ -10,11 +10,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "secp256k1"; pname = "secp256k1";
version = "0.12.1"; version = "0.13.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0zrjxvzxqm4bz2jcy8sras8jircgbs6dkrw8j3nc6jhvzlikwwxl"; sha256 = "a3b43e02d321c09eafa769a6fc2c156f555cab3a7db62175ef2fd21e16cdf20c";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
@ -35,6 +35,10 @@ buildPythonPackage rec {
py.test tests py.test tests
''; '';
postPatch = ''
substituteInPlace setup.py --replace ", 'pytest-runner==2.6.2'" ""
'';
meta = { meta = {
homepage = https://github.com/ludbb/secp256k1-py; homepage = https://github.com/ludbb/secp256k1-py;
description = "Python FFI bindings for secp256k1"; description = "Python FFI bindings for secp256k1";