pythonPackages.smart_open: init at 1.5.3
This commit is contained in:
parent
8ef32b334e
commit
4b3e5c9bea
28
pkgs/development/python-modules/smart_open/default.nix
Normal file
28
pkgs/development/python-modules/smart_open/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -30485,6 +30485,8 @@ EOF
|
||||
|
||||
bz2file = callPackage ../development/python-modules/bz2file { };
|
||||
|
||||
smart_open = callPackage ../development/python-modules/smart_open { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user