mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
python3Packages.aeppl: remove at 0.1.5
This commit is contained in:
parent
885f84c0ca
commit
e74c27b631
3 changed files with 1 additions and 69 deletions
|
@ -1,67 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
aesara,
|
||||
numpy,
|
||||
scipy,
|
||||
numdifftools,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aeppl";
|
||||
version = "0.1.5";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aesara-devs";
|
||||
repo = "aeppl";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-mqBbXwWJwQA2wSHuEdBeXQMfTIcgwYEjpq8AVmOjmHM=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aesara
|
||||
numpy
|
||||
scipy
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
numdifftools
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d);
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "aeppl" ];
|
||||
|
||||
disabledTests = [
|
||||
# Compute issue
|
||||
"test_initial_values"
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
# `numpy.distutils` is deprecated since NumPy 1.23.0, as a result of the deprecation of `distutils` itself.
|
||||
# It will be removed for Python >= 3.12. For older Python versions it will remain present.
|
||||
"-Wignore::DeprecationWarning"
|
||||
# Blas cannot be found, allow fallback to the numpy slower implementation
|
||||
"-Wignore::UserWarning"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for an Aesara-based PPL";
|
||||
homepage = "https://github.com/aesara-devs/aeppl";
|
||||
changelog = "https://github.com/aesara-devs/aeppl/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -38,6 +38,7 @@ mapAliases ({
|
|||
acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19
|
||||
acoustics = throw "acoustics has been removed because the upstream repository was archived in 2024"; # Added 2024-10-04
|
||||
adafruit-nrfutil = throw "adafruit-nrfutil has been promoted to a top-level attribute name: `pkgs.adafruit-nrfutil`."; # Added 2023-11-19
|
||||
aeppl = throw "aeppl was removed as it depends on aesara, which is unmaintained"; # added 2025-01-12
|
||||
aioaladdinconnect = throw "aioaladdinconnect has been removed, as the API is supported was obsoleted on 2024-01-24."; # Added 2024-06-07
|
||||
aiohttp-isal = throw "aiohttp-isal has been removed, as it has been archived and replace by aiohttp-fast-zlib"; # Added 2024-08-11
|
||||
aiohttp-zlib-ng = throw "aiohttp-zlib-ng has been removed, as it has been archived and replaced by aiohttp-fast-zlib"; # Added 2024-11-14
|
||||
|
|
|
@ -99,8 +99,6 @@ self: super: with self; {
|
|||
|
||||
aenum = callPackage ../development/python-modules/aenum { };
|
||||
|
||||
aeppl = callPackage ../development/python-modules/aeppl { };
|
||||
|
||||
aerosandbox = callPackage ../development/python-modules/aerosandbox { };
|
||||
|
||||
aesara = callPackage ../development/python-modules/aesara { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue