Merge sublime4: 4189 -> 4192; sublime4-dev: 4188 -> 4191 (#378651)
[NixPkgs.git] / pkgs / development / python-modules / pkce / default.nix
blob08539054316a73773305b3d75df8036ce9ed4cd0
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "pkce";
10   version = "1.0.3";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "RomeoDespres";
15     repo = pname;
16     rev = version;
17     hash = "sha256-dOHCu0pDXk9LM4Yobaz8GAfVpBd8rXlty+Wfhx+WPME=";
18   };
20   nativeCheckInputs = [ pytestCheckHook ];
22   pythonImportsCheck = [ "pkce" ];
24   meta = with lib; {
25     description = "Python module to work with PKCE";
26     homepage = "https://github.com/RomeoDespres/pkce";
27     license = with licenses; [ mit ];
28     maintainers = with maintainers; [ fab ];
29   };