6bfaf62b3d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-fs/versions (cherry picked from commit 553ce28fc47ae5190707470b9e1720df1de4a678)
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ lib
|
|
, glibcLocales
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, nose
|
|
, appdirs
|
|
, scandir
|
|
, backports_os
|
|
, typing
|
|
, pytz
|
|
, enum34
|
|
, pyftpdlib
|
|
, psutil
|
|
, mock
|
|
, pythonAtLeast
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fs";
|
|
version = "2.4.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0krf632nz24v2da7g9xivq6l2w9za3vph4vix7mm1k3byzwjnawk";
|
|
};
|
|
|
|
buildInputs = [ glibcLocales ];
|
|
checkInputs = [ nose pyftpdlib mock psutil ];
|
|
propagatedBuildInputs = [ six appdirs pytz ]
|
|
++ lib.optionals (!isPy3k) [ backports_os ]
|
|
++ lib.optionals (!pythonAtLeast "3.6") [ typing ]
|
|
++ lib.optionals (!pythonAtLeast "3.5") [ scandir ]
|
|
++ lib.optionals (!pythonAtLeast "3.5") [ enum34 ];
|
|
|
|
LC_ALL="en_US.utf-8";
|
|
|
|
checkPhase = ''
|
|
HOME=$(mktemp -d) nosetests tests []
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Filesystem abstraction";
|
|
homepage = https://github.com/PyFilesystem/pyfilesystem2;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|