Merge pull request #42556 from Profpatsch/pythonPackages-rlp

pythonPackages.rlp: revert to working 0.6.0
This commit is contained in:
Frederik Rietdijk 2018-06-25 11:28:24 +02:00 committed by GitHub
commit abb2286016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,15 @@
{ lib, fetchPypi, buildPythonPackage, pytest, hypothesis }: { lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "rlp"; pname = "rlp";
version = "1.0.1"; version = "0.6.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "492c11b18e89af42f98e96bca7671ffee4ad4cf5e69ea23b4d2221157d81b512"; sha256 = "0d3gx4mp8q4z369s5yk1n9c55sgfw9fidbwqxq67d6s7l45rm1w7";
}; };
checkInputs = [ pytest hypothesis ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ ]; propagatedBuildInputs = [ ];
meta = { meta = {
@ -17,6 +17,5 @@ buildPythonPackage rec {
homepage = "https://github.com/ethereum/pyrlp"; homepage = "https://github.com/ethereum/pyrlp";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gebner ]; maintainers = with lib.maintainers; [ gebner ];
broken = true; # Requires a chain of unpackaged dependencies.
}; };
} }