pythonPackages.smart_open: fix build, 1.5.6 -> 1.5.7

This commit is contained in:
xeji 2018-03-30 23:02:01 +02:00
parent 0426d9001f
commit 3ea8574f17

View File

@ -3,7 +3,9 @@
, isPy3k
, fetchPypi
, boto
, boto3
, bz2file
, mock
, moto
, requests
, responses
@ -12,14 +14,26 @@
buildPythonPackage rec {
pname = "smart_open";
name = "${pname}-${version}";
version = "1.5.6";
version = "1.5.7";
src = fetchPypi {
inherit pname version;
sha256 = "8fd2de1c359bd0074bd6d334a5b9820ae1c5b6ba563970b95052bace4b71baeb";
sha256 = "0y1c29pdxxgxkymr7g2n59siqqaq351zbx9vz8433dxvzy4qgd7p";
};
propagatedBuildInputs = [ boto bz2file requests responses moto ];
# nixpkgs version of moto is >=1.2.0, remove version pin to fix build
postPatch = ''
substituteInPlace ./setup.py --replace "moto==0.4.31" "moto"
'';
# moto>=1.0.0 is backwards-incompatible and some tests fail with it,
# so disable tests for now
doCheck = false;
checkInputs = [ mock moto responses ];
# upstream code requires both boto and boto3
propagatedBuildInputs = [ boto boto3 bz2file requests ];
meta = {
license = lib.licenses.mit;
description = "smart_open is a Python 2 & Python 3 library for efficient streaming of very large file";