mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 08:06:23 +01:00
ZipUnicode PyPi
This commit is contained in:
parent
63e7cba144
commit
b407495b6d
25
packages/zipunicode/default.nix
Normal file
25
packages/zipunicode/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ZipUnicode";
|
||||
version = "1.1.1";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "";
|
||||
homepage = "https://github.com/lovvskillz/python-discord-webhook";
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
|
@ -57,6 +57,7 @@ in
|
|||
../../packages/tomesd
|
||||
../../packages/blendmodes
|
||||
../../packages/xformers
|
||||
../../packages/zipunicode
|
||||
])
|
||||
(final: prev: lib.mapAttrs
|
||||
(_: pkg: pkg.overrideAttrs (old: {
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ python3Packages.buildPythonPackage {
|
|||
version = "v1.6.0";
|
||||
inherit src;
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
zipunicode #for civitaui browser+
|
||||
imageio #animatediff create webm and shit
|
||||
av #animatediff create webm and shit
|
||||
discord-webhook #for dreambooth i think
|
||||
|
|
|
|||
Loading…
Reference in a new issue