Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hkdf / default.nix
blobe82489fd12fd039dd0530817491af30d6a0d4d33
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 }:
7 buildPythonPackage rec {
8   pname = "hkdf";
9   version = "0.0.3";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1jhxk5vhxmxxjp3zj526ry521v9inzzl8jqaaf0ma65w6k332ak2";
15   };
17   nativeCheckInputs = [ nose ];
19   checkPhase = ''
20     nosetests
21   '';
23   # no tests in PyPI tarball
24   doCheck = false;
26   meta = with lib; {
27     description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)";
28     homepage = "https://github.com/casebeer/python-hkdf";
29     license = licenses.bsd2;
30   };