nixpkgs/pkgs/development/python-modules/openidc-client/default.nix

22 lines
578 B
Nix
Raw Normal View History

2017-09-16 04:43:11 +02:00
{ stdenv, buildPythonPackage, fetchPypi, requests }:
buildPythonPackage rec {
pname = "openidc-client";
2018-06-12 18:47:03 +02:00
version = "0.6.0";
2017-09-16 04:43:11 +02:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:03 +02:00
sha256 = "680e969cae18c30adbddd6a087ed09f6a296b4937b4c8bc69be813bdbbfa9847";
2017-09-16 04:43:11 +02:00
};
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";
2017-09-16 04:43:11 +02:00
license = licenses.mit;
maintainers = with maintainers; [ disassembler ];
};
}