aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/requests-aws4auth/default.nix
blob: a2e92283dc72f79688cdcff0cf4f7f819312a350 (plain)
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
{ lib, buildPythonPackage, fetchPypi, python, requests }:
with lib;
buildPythonPackage rec {
  pname = "requests-aws4auth";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9a4a5f4a61c49f098f5f669410308ac5b0ea2682fd511ee3a4f9ff73b5bb275a";
  };

  propagatedBuildInputs = [ requests ];

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