python3Packages.pyfnip: init at 0.2

This commit is contained in:
Fabian Affolter 2021-01-13 12:42:47 +01:00
parent b451286b1f
commit f90920cc2c
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "pyfnip";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "0q52rb0kshgbligxjqrwz0v7kgqjbv6jahdb66ndxy93mfr0ig3a";
};
propagatedBuildInputs = [ requests ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyfnip" ];
meta = with lib; {
description = "Python client to get fido account data";
homepage = "https://github.com/juhaniemi/pyfnip";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5280,6 +5280,8 @@ in {
pyfiglet = callPackage ../development/python-modules/pyfiglet { };
pyfnip = callPackage ../development/python-modules/pyfnip { };
pyflakes = callPackage ../development/python-modules/pyflakes { };
pyfma = callPackage ../development/python-modules/pyfma { };