mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
53 lines
910 B
Nix
53 lines
910 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mock
|
|
, psutil
|
|
, pyopenssl
|
|
, pysendfile
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyftpdlib";
|
|
version = "1.5.7";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fqPOQTfbggmvH2ueoCBZD0YsY+18ehJAvVluTTp7ZW4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pysendfile
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
ssl = [
|
|
pyopenssl
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
psutil
|
|
];
|
|
|
|
# Impure filesystem-related tests cause timeouts
|
|
# on Hydra: https://hydra.nixos.org/build/84374861
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyftpdlib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous FTP server library";
|
|
homepage = "https://github.com/giampaolo/pyftpdlib/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|