depot/third_party/nixpkgs/pkgs/development/python-modules/hkdf/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

32 lines
586 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
nose,
}:
buildPythonPackage rec {
pname = "hkdf";
version = "0.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1jhxk5vhxmxxjp3zj526ry521v9inzzl8jqaaf0ma65w6k332ak2";
};
nativeCheckInputs = [ nose ];
checkPhase = ''
nosetests
'';
# no tests in PyPI tarball
doCheck = false;
meta = with lib; {
description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)";
homepage = "https://github.com/casebeer/python-hkdf";
license = licenses.bsd2;
};
}