nixpkgs/pkgs/development/python-modules/pkce/default.nix
2024-05-22 17:32:03 +02:00

31 lines
625 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pkce";
version = "1.0.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "RomeoDespres";
repo = pname;
rev = version;
hash = "sha256-dOHCu0pDXk9LM4Yobaz8GAfVpBd8rXlty+Wfhx+WPME=";
};
nativeCheckInputs = [ 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 ];
};
}