Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyfido / default.nix
blobd6f5207bce31cee1b508433136b5df64806e8503
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "pyfido";
9   version = "2.1.2";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-hh2g46GVCkiMHElEP6McY8FdzGNzZV7pgA5DQhodP20=";
14   };
16   propagatedBuildInputs = [ aiohttp ];
18   # Project has no tests
19   doCheck = false;
20   pythonImportsCheck = [ "pyfido" ];
22   meta = with lib; {
23     description = "Python client to get fido account data";
24     homepage = "https://github.com/titilambert/pyfido";
25     license = with licenses; [ asl20 ];
26     maintainers = with maintainers; [ fab ];
27   };