python39Packages.passlib: update homepage, add license

This commit is contained in:
Sandro Jäckel 2022-03-23 08:45:35 +01:00
parent 85a633de9f
commit f4afba83b2
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,5 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, nose
, bcrypt
@ -18,8 +19,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ bcrypt argon2_cffi ];
propagatedNativeBuildInputs = [ argon2_cffi ];
meta = {
meta = with lib; {
description = "A password hashing library for Python";
homepage = "https://code.google.com/p/passlib/";
homepage = "https://foss.heptapod.net/python-libs/passlib";
license = licenses.bsdOriginal;
};
}