summary refs log tree commit diff
path: root/pkgs/development/python-modules/requests-aws4auth/default.nix
blob: 2cbbee3c9c40c51d30954f62a635bfb6202b6bff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, buildPythonPackage, fetchPypi, isPy3k, requests }:
with lib;
buildPythonPackage rec {
  pname = "requests-aws4auth";
  version = "0.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0g52a1pm53aqkc9qb5q1m918c1qy6q47c1qz63p5ilynfbs3m5y9";
  };

  postPatch = optionalString isPy3k ''
    sed "s/path_encoding_style/'path_encoding_style'/" \
      -i requests_aws4auth/service_parameters.py
  '';

  propagatedBuildInputs = [ requests ];

  # The test fail on Python >= 3 because of module import errors.
  doCheck = !isPy3k;

  meta = {
    description = "Amazon Web Services version 4 authentication for the Python Requests library.";
    homepage = "https://github.com/sam-washington/requests-aws4auth";
    license = licenses.mit;
    maintainers = [ maintainers.basvandijk ];
  };
}