3
0
Fork 0
forked from mirrors/nixpkgs

python39Packages.boto: some cleanup

This commit is contained in:
Sandro Jäckel 2021-10-07 16:51:02 +02:00
parent f99f09c4a3
commit 5561c9b712
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,4 @@
{ pkgs { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonAtLeast , pythonAtLeast
@ -24,11 +24,11 @@ buildPythonPackage rec {
${python.interpreter} tests/test.py default ${python.interpreter} tests/test.py default
''; '';
doCheck = (!isPy38); # hmac functionality has changed doCheck = !isPy38; # hmac functionality has changed
checkInputs = [ nose mock ]; checkInputs = [ nose mock ];
propagatedBuildInputs = [ requests httpretty ]; propagatedBuildInputs = [ requests httpretty ];
meta = with pkgs.lib; { meta = with lib; {
homepage = "https://github.com/boto/boto"; homepage = "https://github.com/boto/boto";
license = licenses.mit; license = licenses.mit;
description = "Python interface to Amazon Web Services"; description = "Python interface to Amazon Web Services";