32 lines
624 B
Nix
32 lines
624 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "fatfs";
|
|
version = "0.1.2";
|
|
pyproject = false;
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-VrnL2a2qq/tg9sRTKO+vlvQKMjNT3K2sm/B5UAYdqqA=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
cython
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "fatfs" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for ChaN's FatFS, the generic FAT/exFAT filesystem module";
|
|
homepage = "https://pypi.org/project/fatfs/";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|