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