about summary refs log tree commit diff
path: root/pkgs/development/python-modules/openidc-client/default.nix
blob: 9380654f472b80c29929e056c228343a695a0b6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "openidc-client";
  version = "0.2.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1fca4bpnswyji5nivsrbak5vsfphl4njyfrb8rm2034nq6mzb8ah";
  };
  propagatedBuildInputs = [ requests ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "A CLI python OpenID Connect client with token caching and management";
    homepage = https://github.com/puiterwijk;
    license = licenses.mit;
    maintainers = with maintainers; [ disassembler ];
  };
}