python3Packages.pyfnip: init at 0.2
This commit is contained in:
parent
b451286b1f
commit
f90920cc2c
28
pkgs/development/python-modules/pyfnip/default.nix
Normal file
28
pkgs/development/python-modules/pyfnip/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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
Block a user