nixpkgs/pkgs/development/python-modules/dfdiskcache/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

46 lines
973 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pandas,
setuptools,
simplesqlite,
typing-extensions,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "df-diskcache";
version = "0.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = "df-diskcache";
rev = "v${version}";
hash = "sha256-s+sqEPXw6tbEz9mnG+qeUSF6BmDssYhaDYOmraFaRbw=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
pandas
simplesqlite
typing-extensions
];
preCheck = ''
# Needed for Permission denied: '/homeless-shelter'
export HOME=$(mktemp -d)
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dfdiskcache" ];
meta = {
description = "Python library for caching pandas.DataFrame objects to local disk";
homepage = "https://github.com/thombashi/df-diskcache";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ henrirosten ];
};
}