python312Packages.flexcache: init at 0.3
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
wheel,
|
||||
|
||||
# dependencies
|
||||
typing-extensions,
|
||||
|
||||
# checks
|
||||
pytestCheckHook,
|
||||
pytest-mpl,
|
||||
pytest-subtests,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flexcache";
|
||||
version = "0.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hgrecco";
|
||||
repo = "flexcache";
|
||||
rev = version;
|
||||
hash = "sha256-MAbTe7NxzfRPzo/Wnb5SnPJvJWf6zVeYsaw/g9OJYSE=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [ typing-extensions ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-mpl
|
||||
pytest-subtests
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "flexcache" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An robust and extensible package to cache on disk the result of expensive calculations";
|
||||
homepage = "https://github.com/hgrecco/flexcache";
|
||||
changelog = "https://github.com/hgrecco/flexcache/blob/${src.rev}/CHANGES";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -4453,6 +4453,8 @@ self: super: with self; {
|
||||
|
||||
flet-runtime = callPackage ../development/python-modules/flet-runtime { };
|
||||
|
||||
flexcache = callPackage ../development/python-modules/flexcache { };
|
||||
|
||||
flexmock = callPackage ../development/python-modules/flexmock { };
|
||||
|
||||
flickrapi = callPackage ../development/python-modules/flickrapi { };
|
||||
|
||||
Reference in New Issue
Block a user