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

22 lines
568 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, requests }:
2017-09-16 03:43:11 +01:00
buildPythonPackage rec {
pname = "openidc-client";
2018-06-12 17:47:03 +01:00
version = "0.6.0";
2017-09-16 03:43:11 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:03 +01:00
sha256 = "680e969cae18c30adbddd6a087ed09f6a296b4937b4c8bc69be813bdbbfa9847";
2017-09-16 03:43:11 +01:00
};
propagatedBuildInputs = [ requests ];
doCheck = false;
meta = with lib; {
2017-09-16 03:43:11 +01:00
description = "A CLI python OpenID Connect client with token caching and management";
homepage = "https://github.com/puiterwijk";
2017-09-16 03:43:11 +01:00
license = licenses.mit;
maintainers = with maintainers; [ disassembler ];
};
}