mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 08:06:23 +01:00
- KoboldAI is no longer upstream maintained, so is now deprecated in nixified.ai - InvokeAI: v2.3.1.post2 -> v3.3.0post3 - textgen: init at v1.7 - treewide: update flake inputs including nixpkgs - treewide: add a bunch of new dependencies and upgrade old ones
33 lines
687 B
Nix
33 lines
687 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, wheel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "easing-functions";
|
|
version = "1.0.4";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "easing_functions";
|
|
inherit version;
|
|
hash = "sha256-4Yx5MdRFuF8oxNFa0Kmke7ZdTi7vwNs4QESPriXj+d4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
pythonImportsCheck = [ "easing_functions" ];
|
|
|
|
meta = with lib; {
|
|
description = "A collection of the basic easing functions for python";
|
|
homepage = "https://pypi.org/project/easing-functions/";
|
|
license = licenses.unfree; # FIXME: nix-init did not found a license
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|