pythonPackages.smart_open: init at 1.5.3

This commit is contained in:
Jean-Philippe Bernardy 2017-06-12 10:13:42 +02:00
parent 8ef32b334e
commit 4b3e5c9bea
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, boto
, bz2file
, moto
, requests
, responses
}:
buildPythonPackage rec {
pname = "smart_open";
name = "${pname}-${version}";
version = "1.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "0m5j71f7f36s17v4mwv0bxg4azknvcy82rbjp28b4vifrjd6dm7s";
};
propagatedBuildInputs = [ boto bz2file requests responses moto ];
meta = {
license = lib.licenses.mit;
description = "smart_open is a Python 2 & Python 3 library for efficient streaming of very large file";
maintainers = with lib.maintainers; [ jpbernardy ];
};
}

View file

@ -30485,6 +30485,8 @@ EOF
bz2file = callPackage ../development/python-modules/bz2file { };
smart_open = callPackage ../development/python-modules/smart_open { };
});
in fix' (extends overrides packages)