My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/passlib/default.nix

25 lines
491 B

{ 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/;
};
}