1 { lib, buildPythonPackage, fetchFromGitHub, fetchpatch
3 , boto3, envs, python-jose, requests }:
9 # move to fetchPyPi when https://github.com/capless/warrant/issues/97 is fixed
10 src = fetchFromGitHub {
13 rev = "ff2e4793d8479e770f2461ef7cbc0c15ee784395";
14 sha256 = "0gw3crg64p1zx3k5js0wh0x5bldgs7viy4g8hld9xbka8q0374hi";
19 name = "fix-pip10-compat.patch";
20 url = "https://github.com/capless/warrant/commit/ae17d17d9888b9218a8facf6f6ad0bf4adae9a12.patch";
21 sha256 = "1lvqi2qfa3kxdz05ab2lc7xnd3piyvvnz9kla2jl4pchi876z17c";
25 # this needs to go when 0.6.2 or later is released
27 substituteInPlace requirements.txt \
28 --replace "python-jose-cryptodome>=1.3.2" "python-jose>=2.0.0"
31 checkInputs = [ mock ];
33 propagatedBuildInputs = [ boto3 envs python-jose requests ];
35 # all the checks are failing
39 description = "Python library for using AWS Cognito with support for SRP";
40 homepage = "https://github.com/capless/warrant";
41 license = lib.licenses.asl20;
42 maintainers = with lib.maintainers; [ peterhoeg ];