3
0
Fork 0
forked from mirrors/nixpkgs

new package: passlib

This commit is contained in:
Sibi 2015-02-21 15:09:21 +05:30
parent efbd73dc4c
commit c8ae0b77f3

View file

@ -2975,6 +2975,23 @@ let
};
};
passlib = buildPythonPackage rec {
version = "1.6.2";
name = "passlib-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/passlib/passlib-${version}.tar.gz";
md5 = "2f872ae7c72ca338634c618f2cff5863";
};
buildInputs = with self; [ nose pybcrypt];
meta = with stdenv.lib; {
description = "A password hashing library for Python";
homepage = https://code.google.com/p/passlib/;
};
};
peppercorn = buildPythonPackage rec {
name = "peppercorn-0.4";