mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 10:14:48 +00:00
python3Packages.vqgan-jax: drop (#550012)
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
flax,
|
||||
jax,
|
||||
jaxlib,
|
||||
transformers,
|
||||
}:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "vqgan-jax";
|
||||
version = "unstable-2022-04-20";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "patil-suraj";
|
||||
repo = "vqgan-jax";
|
||||
rev = "1be20eee476e5d35c30e4ec3ed12222018af8ce4";
|
||||
hash = "sha256-OZihAXpE0UsgauQ38XDmAF+lrIgz05uK0ro8SCdVsPc=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
buildInputs = [ jaxlib ];
|
||||
|
||||
dependencies = [
|
||||
flax
|
||||
jax
|
||||
transformers
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "vqgan_jax" ];
|
||||
|
||||
meta = {
|
||||
description = "JAX implementation of VQGAN";
|
||||
homepage = "https://github.com/patil-suraj/vqgan-jax";
|
||||
# license unknown: https://github.com/patil-suraj/vqgan-jax/issues/9
|
||||
license = lib.licenses.unfree;
|
||||
maintainers = with lib.maintainers; [ r-burns ];
|
||||
};
|
||||
}
|
||||
@@ -755,6 +755,7 @@ mapAliases {
|
||||
ViennaRNA = throw "'ViennaRNA' has been renamed to/replaced by 'viennarna'"; # Converted to throw 2025-10-29
|
||||
vncdo = vncdotool; # Added 2026-06-30
|
||||
volvooncall = throw "'volvooncall' was removed because Home Assistant dropped the integration"; # added 2026-07-20
|
||||
vqgan-jax = throw "'vqgan-jax' has been removed, as it was unmaintained upstream and has unclear license"; # Added 2026-08-07
|
||||
vulcan-api = throw "vulcan-api has been removed. Their API has changed and they don't allow access from unofficial software anymore."; # added 2025-09-05
|
||||
vxi11 = throw "'vxi11' has been removed as it was broken and unmaintained upstream"; # Added 2025-11-27
|
||||
Wand = throw "'Wand' has been renamed to/replaced by 'wand'"; # Converted to throw 2025-10-29
|
||||
|
||||
@@ -22248,8 +22248,6 @@ self: super: with self; {
|
||||
|
||||
vprof = callPackage ../development/python-modules/vprof { };
|
||||
|
||||
vqgan-jax = callPackage ../development/python-modules/vqgan-jax { };
|
||||
|
||||
vsts = callPackage ../development/python-modules/vsts { };
|
||||
|
||||
vsts-cd-manager = callPackage ../development/python-modules/vsts-cd-manager { };
|
||||
|
||||
Reference in New Issue
Block a user