forked from mirrors/nixpkgs
python39Packages.boto: some cleanup
This commit is contained in:
parent
f99f09c4a3
commit
5561c9b712
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue