Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python312Packages.python-bitcoinlib: rename from bitcoinlib #358492

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/by-name/ze/zeronet-conservancy/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ python3Packages.buildPythonApplication rec {

propagatedBuildInputs = with python3Packages; [
gevent msgpack base58 merkletools rsa pysocks pyasn1 websocket-client
gevent-websocket rencode bitcoinlib maxminddb pyopenssl rich defusedxml
gevent-websocket rencode python-bitcoinlib maxminddb pyopenssl rich defusedxml
pyaes coincurve
];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/by-name/ze/zeronet/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ python3Packages.buildPythonApplication rec {

propagatedBuildInputs = with python3Packages; [
gevent msgpack base58 merkletools rsa pysocks pyasn1 websocket-client
gevent-websocket rencode bitcoinlib maxminddb pyopenssl
gevent-websocket rencode python-bitcoinlib maxminddb pyopenssl
];

buildPhase = ''
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/opentimestamps/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
lib,
bitcoinlib,
python-bitcoinlib,
buildPythonPackage,
fetchFromGitHub,
gitpython,
Expand All @@ -24,7 +24,7 @@ buildPythonPackage rec {
};

propagatedBuildInputs = [
bitcoinlib
python-bitcoinlib
gitpython
pycryptodomex
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}:

buildPythonPackage rec {
pname = "bitcoinlib";
pname = "python-bitcoinlib";
version = "0.12.2";
format = "setuptools";

Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/monitoring/prometheus/bitcoin-exporter.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ python3Packages.buildPythonApplication rec {
# The makefile builds docker containers.
dontBuild = true;

propagatedBuildInputs = with python3Packages; [ prometheus-client bitcoinlib riprova ];
propagatedBuildInputs = with python3Packages; [ prometheus-client python-bitcoinlib riprova ];

installPhase = ''
mkdir -p $out/bin
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ self: super: with self; {

bitbox02 = callPackage ../development/python-modules/bitbox02 { };

bitcoinlib = callPackage ../development/python-modules/bitcoinlib { };
python-bitcoinlib = callPackage ../development/python-modules/python-bitcoinlib { };

bitcoin-utils-fork-minimal = callPackage ../development/python-modules/bitcoin-utils-fork-minimal { };

Expand Down