Skip to content

Commit

Permalink
Merge pull request #44510 from fgaz/pybitmessage
Browse files Browse the repository at this point in the history
pybitmessage: 0.6.2 -> 0.6.3.2
  • Loading branch information
dotlambda authored Aug 7, 2018
2 parents aea2d82 + 26e939e commit b35238f
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, pythonPackages, openssl }:
{ stdenv, fetchFromGitHub, python2Packages, openssl }:

pythonPackages.buildPythonApplication rec {
name = "pybitmessage-${version}";
python2Packages.buildPythonApplication rec {
pname = "pybitmessage";

version = "0.6.2";
version = "0.6.3.2";

src = fetchFromGitHub {
owner = "bitmessage";
repo = "PyBitmessage";
rev = "v${version}";
sha256 = "04sgns9qczzw2152gqdr6bjyy4fmgs26cz8n3qck94l0j51rxhz8";
rev = version;
sha256 = "1lmhbpwsqh1v93krlqqhafw2pc3y0qp8zby186yllbph6s8kdp35";
};

propagatedBuildInputs = with pythonPackages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];
propagatedBuildInputs = with python2Packages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];

preConfigure = ''
# Remove interaction and misleading output
Expand Down

0 comments on commit b35238f

Please sign in to comment.