mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
6cb7d25090
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-fido2/versions
24 lines
644 B
Nix
24 lines
644 B
Nix
{ lib, buildPythonPackage, fetchPypi, six, cryptography }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fido2";
|
|
version = "0.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "12245b16czsgq4a251jqlk5qs3sldlcryfcganswzk2lbgplmn7q";
|
|
};
|
|
|
|
# The pypi package does not include tests
|
|
# Check https://github.com/Yubico/python-fido2/pull/8
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ six cryptography ];
|
|
|
|
meta = with lib; {
|
|
description = "Provides library functionality for FIDO 2.0, including communication with a device over USB.";
|
|
homepage = https://github.com/Yubico/python-fido2;
|
|
license = licenses.mpl20;
|
|
};
|
|
}
|