mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Merge pull request #6494 from psibi/new-python-sibi-patch
new package: passlib
This commit is contained in:
commit
8e4a8494be
@ -3024,6 +3024,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 {
|
peppercorn = buildPythonPackage rec {
|
||||||
name = "peppercorn-0.4";
|
name = "peppercorn-0.4";
|
||||||
|
Loading…
Reference in New Issue
Block a user