python.pkgs.hkdf: no tests in tarball

This commit is contained in:
Robert Schütz 2019-02-14 15:09:31 +01:00 committed by Frederik Rietdijk
parent 14e5af2aa7
commit 869d64e2d1

View file

@ -13,12 +13,15 @@ buildPythonPackage rec {
sha256 = "1jhxk5vhxmxxjp3zj526ry521v9inzzl8jqaaf0ma65w6k332ak2"; sha256 = "1jhxk5vhxmxxjp3zj526ry521v9inzzl8jqaaf0ma65w6k332ak2";
}; };
buildInputs = [ nose ]; checkInputs = [ nose ];
checkPhase = '' checkPhase = ''
nosetests nosetests
''; '';
# no tests in PyPI tarball
doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)"; description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)";
homepage = "https://github.com/casebeer/python-hkdf"; homepage = "https://github.com/casebeer/python-hkdf";