pythonPackages.botocore: 1.7.20 -> 1.7.43
This commit is contained in:
parent
f6b6e8783d
commit
0286cc7220
44
pkgs/development/python-modules/botocore/default.nix
Normal file
44
pkgs/development/python-modules/botocore/default.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, dateutil
|
||||||
|
, jmespath
|
||||||
|
, docutils
|
||||||
|
, ordereddict
|
||||||
|
, simplejson
|
||||||
|
, mock
|
||||||
|
, nose
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "botocore";
|
||||||
|
version = "1.7.43";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0wyyj7sk7dh9v7i1g5jc5maqdadvbs4khi7srz0095cywkjqpysc";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
dateutil
|
||||||
|
jmespath
|
||||||
|
docutils
|
||||||
|
ordereddict
|
||||||
|
simplejson
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ mock nose ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
nosetests -v
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Network access
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/boto/botocore;
|
||||||
|
license = "bsd";
|
||||||
|
description = "A low-level interface to a growing number of Amazon Web Services";
|
||||||
|
};
|
||||||
|
}
|
@ -2066,39 +2066,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
botocore = buildPythonPackage rec {
|
botocore = callPackage ../development/python-modules/botocore { };
|
||||||
name = "${pname}-${version}";
|
|
||||||
pname = "botocore";
|
|
||||||
version = "1.7.20";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "16sy35bp9i2g9785l8jzcd4ddc2nydqs3wnkqwi36xx6l3bdbn13";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [
|
|
||||||
dateutil
|
|
||||||
jmespath
|
|
||||||
docutils
|
|
||||||
ordereddict
|
|
||||||
simplejson
|
|
||||||
];
|
|
||||||
|
|
||||||
checkInputs = with self; [ mock nose ];
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
nosetests -v
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Network access
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://github.com/boto/botocore;
|
|
||||||
license = "bsd";
|
|
||||||
description = "A low-level interface to a growing number of Amazon Web Services";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
bottle = buildPythonPackage rec {
|
bottle = buildPythonPackage rec {
|
||||||
version = "0.12.11";
|
version = "0.12.11";
|
||||||
@ -8391,6 +8359,8 @@ in {
|
|||||||
inherit (pkgs) glibcLocales;
|
inherit (pkgs) glibcLocales;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
s3transfer = callPackage ../development/python-modules/s3transfer { };
|
||||||
|
|
||||||
feedparser = buildPythonPackage (rec {
|
feedparser = buildPythonPackage (rec {
|
||||||
name = "feedparser-5.2.1";
|
name = "feedparser-5.2.1";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user