nixpkgs/pkgs/development/python-modules/pkce/default.nix
2021-02-09 09:01:20 +01:00

29 lines
590 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pkce";
version = "1.0.3";
src = fetchFromGitHub {
owner = "RomeoDespres";
repo = pname;
rev = version;
sha256 = "sha256-dOHCu0pDXk9LM4Yobaz8GAfVpBd8rXlty+Wfhx+WPME=";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pkce" ];
meta = with lib; {
description = "Python module to work with PKCE";
homepage = "https://github.com/RomeoDespres/pkce";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}