mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
28 lines
811 B
Nix
28 lines
811 B
Nix
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, openssl }:
|
|
|
|
let ext = if stdenv.isDarwin then "dylib" else "so";
|
|
in buildPythonPackage rec {
|
|
pname = "bitcoinlib";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "petertodd";
|
|
rev = "7a8a47ec6b722339de1d0a8144e55b400216f90f";
|
|
repo = "python-bitcoinlib";
|
|
sha256 = "1s1jm2nid7ab7yiwlp1n2v3was9i4q76xmm07wvzpd2zvn5zb91z";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace bitcoin/core/key.py --replace \
|
|
"ctypes.util.find_library('ssl') or 'libeay32'" \
|
|
"'${openssl.out}/lib/libssl.${ext}'"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = src.meta.homepage;
|
|
description = "Easy interface to the Bitcoin data structures and protocol";
|
|
license = with lib.licenses; [ gpl3 ];
|
|
maintainers = with lib.maintainers; [ jb55 ];
|
|
};
|
|
}
|