mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
367bf103d0
* python310Packages.nianet: init at 1.1.1 * python310Packages.nianet: 1.1.1 -> 1.1.4 * Update pkgs/development/python-modules/nianet/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update default.nix --------- Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, matplotlib
|
|
, niapy
|
|
, numpy
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, scikit-learn
|
|
, toml-adapt
|
|
, torch
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nianet";
|
|
version = "1.1.4";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SasoPavlic";
|
|
repo = pname;
|
|
rev = "version_${version}";
|
|
sha256 = "sha256-FZipl6Z9AfiL6WH0kvUn8bVxt8JLdDVlmTSqnyxe0nY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
toml-adapt
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
niapy
|
|
numpy
|
|
scikit-learn
|
|
torch
|
|
];
|
|
|
|
# create niapy and torch dep version consistent
|
|
preBuild = ''
|
|
toml-adapt -path pyproject.toml -a change -dep niapy -ver X
|
|
toml-adapt -path pyproject.toml -a change -dep torch -ver X
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"nianet"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Designing and constructing neural network topologies using nature-inspired algorithms";
|
|
homepage = "https://github.com/SasoPavlic/NiaNet";
|
|
changelog = "https://github.com/SasoPavlic/NiaNet/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ firefly-cpp ];
|
|
};
|
|
}
|