blob: 8a1654d96ed2f28ba2fa1468b7227efd736d3b6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pkce";
version = "1.0.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "RomeoDespres";
repo = "pkce";
rev = version;
hash = "sha256-dOHCu0pDXk9LM4Yobaz8GAfVpBd8rXlty+Wfhx+WPME=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pkce" ];
meta = {
description = "Python module to work with PKCE";
homepage = "https://github.com/RomeoDespres/pkce";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|