about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/requests-aws4auth/default.nix
blob: fa97942e226f4c8d95657b2b1f6880362681e4ac (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
29
30
{ lib, buildPythonPackage, fetchPypi, python, requests, six }:

with lib;
buildPythonPackage rec {
  pname = "requests-aws4auth";
  version = "1.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c0883346ce30b5018903a67da88df72f73ff06e1a320845bba9cd85e811ba0ba";
  };

  propagatedBuildInputs = [ requests six ];

  # pypi package no longer contains tests
  doCheck = false;
  checkPhase = ''
    cd requests_aws4auth
    ${python.interpreter} test/requests_aws4auth_test.py
  '';

  pythonImportsCheck = [ "requests_aws4auth" ];

  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 ];
  };
}