summary refs log tree commit diff
path: root/pkgs/development/python-modules/passlib/default.nix
blob: c269a414f82db669f7710b3cca4aff8631b98ace (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
25
{ lib
, buildPythonPackage
, fetchPypi
, nose
, bcrypt
}:

buildPythonPackage rec {
  pname = "passlib";
  version = "1.7.1";
  name    = "${pname}-${version}";

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

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

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