1{
2 lib,
3 aiohttp,
4 buildPythonPackage,
5 fetchPypi,
6}:
7
8buildPythonPackage rec {
9 pname = "pyfido";
10 version = "2.1.2";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-hh2g46GVCkiMHElEP6McY8FdzGNzZV7pgA5DQhodP20=";
16 };
17
18 propagatedBuildInputs = [ aiohttp ];
19
20 # Project has no tests
21 doCheck = false;
22 pythonImportsCheck = [ "pyfido" ];
23
24 meta = with lib; {
25 description = "Python client to get fido account data";
26 mainProgram = "pyfido";
27 homepage = "https://github.com/titilambert/pyfido";
28 license = with licenses; [ asl20 ];
29 maintainers = with maintainers; [ fab ];
30 };
31}