Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 429 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pybcrypt"; 8 version = "0.4"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "5fa13bce551468350d66c4883694850570f3da28d6866bb638ba44fe5eabda78"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "bcrypt password hashing and key derivation"; 17 homepage = https://code.google.com/p/py-bcrypt2; 18 license = licenses.bsd0; 19 }; 20 21}