Merge pull request #109272 from fabaff/pyfnip
This commit is contained in:
commit
1401c0c30f
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -283,7 +283,7 @@
|
|||
"fronius" = ps: with ps; [ ]; # missing inputs: pyfronius
|
||||
"frontend" = ps: with ps; [ aiohttp-cors pillow ]; # missing inputs: home-assistant-frontend
|
||||
"frontier_silicon" = ps: with ps; [ ]; # missing inputs: afsapi
|
||||
"futurenow" = ps: with ps; [ ]; # missing inputs: pyfnip
|
||||
"futurenow" = ps: with ps; [ pyfnip ];
|
||||
"garadget" = ps: with ps; [ ];
|
||||
"garmin_connect" = ps: with ps; [ ]; # missing inputs: garminconnect
|
||||
"gc100" = ps: with ps; [ ]; # missing inputs: python-gc100
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue