python.pkgs.passlib: move to own file

This commit is contained in:
Frederik Rietdijk
2017-09-06 18:04:56 +02:00
parent 5e64cc6cf0
commit 8d7e8a6720
2 changed files with 26 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, bcrypt
}:
buildPythonPackage rec {
pname = "passlib";
version = "1.6.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1z27wdxs5rj5xhhqfzvzn3yg682irkxw6dcs5jj7mcf97psk8gd8";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ bcrypt ];
meta = {
description = "A password hashing library for Python";
homepage = https://code.google.com/p/passlib/;
};
}