nixpkgs/pkgs/development/python-modules/pkce/default.nix

29 lines
590 B
Nix
Raw Normal View History

2021-02-07 11:44:58 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pkce";
2021-02-09 08:01:20 +00:00
version = "1.0.3";
2021-02-07 11:44:58 +00:00
src = fetchFromGitHub {
owner = "RomeoDespres";
repo = pname;
rev = version;
2021-02-09 08:01:20 +00:00
sha256 = "sha256-dOHCu0pDXk9LM4Yobaz8GAfVpBd8rXlty+Wfhx+WPME=";
2021-02-07 11:44:58 +00:00
};
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 ];
};
}