about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/passlib/default.nix
blob: 6f82c446a1ffef5e585d4b597b6b1a122e06c91a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildPythonPackage
, fetchPypi
, nose
, bcrypt
, argon2_cffi
}:

buildPythonPackage rec {
  pname = "passlib";
  version = "1.7.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3d948f64138c25633613f303bcc471126eae67c04d5e3f6b7b8ce6242f8653e0";
  };

  checkInputs = [ nose ];
  propagatedBuildInputs = [ bcrypt argon2_cffi ];

  meta = {
    description = "A password hashing library for Python";
    homepage    = https://code.google.com/p/passlib/;
  };
}