mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
python39Packages.bcrypt: remove unused dependencies
This commit is contained in:
parent
27b5b67d9f
commit
c7fa67725a
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, isPyPy, fetchPypi, pythonOlder
|
||||
, cffi, pycparser, mock, pytest, py, six }:
|
||||
, cffi, pytestCheckHook, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "3.2.0";
|
||||
|
@ -11,12 +11,12 @@ buildPythonPackage rec {
|
|||
sha256 = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29";
|
||||
};
|
||||
|
||||
buildInputs = [ pycparser mock pytest py ];
|
||||
|
||||
propagatedBuildInputs = [ six ] ++ lib.optional (!isPyPy) cffi;
|
||||
|
||||
propagatedNativeBuildInputs = lib.optional (!isPyPy) cffi;
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
description = "Modern password hashing for your software and your servers";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue