Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 24 lines 477 B view raw
1{ buildPythonPackage 2, fetchPypi 3, nose 4, bcrypt 5, argon2_cffi 6}: 7 8buildPythonPackage rec { 9 pname = "passlib"; 10 version = "1.7.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "3d948f64138c25633613f303bcc471126eae67c04d5e3f6b7b8ce6242f8653e0"; 15 }; 16 17 checkInputs = [ nose ]; 18 propagatedBuildInputs = [ bcrypt argon2_cffi ]; 19 20 meta = { 21 description = "A password hashing library for Python"; 22 homepage = https://code.google.com/p/passlib/; 23 }; 24}