uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
78
pkgs/development/python-modules/torchmetrics/default.nix
Normal file
78
pkgs/development/python-modules/torchmetrics/default.nix
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, cloudpickle
|
||||
, scikit-learn
|
||||
, scikitimage
|
||||
, packaging
|
||||
, psutil
|
||||
, py-deprecate
|
||||
, pytorch
|
||||
, pytestCheckHook
|
||||
, torchmetrics
|
||||
, pytorch-lightning
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "torchmetrics";
|
||||
version = "0.8.2";
|
||||
in
|
||||
buildPythonPackage {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PyTorchLightning";
|
||||
repo = "metrics";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-1TO2YgZzjVmrE5jhMwo0Y+bQUQ5jJj34k+kGpdqqPVQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
packaging
|
||||
py-deprecate
|
||||
];
|
||||
|
||||
# Let the user bring their own instance
|
||||
buildInputs = [
|
||||
pytorch
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytorch-lightning
|
||||
scikit-learn
|
||||
scikitimage
|
||||
cloudpickle
|
||||
psutil
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
# A cyclic dependency in: integrations/test_lightning.py
|
||||
doCheck = false;
|
||||
passthru.tests.check = torchmetrics.overridePythonAttrs (_: {
|
||||
doCheck = true;
|
||||
});
|
||||
|
||||
disabledTestPaths = [
|
||||
# These require too many "leftpad-level" dependencies
|
||||
"tests/text"
|
||||
"tests/audio"
|
||||
"tests/image"
|
||||
|
||||
# A few non-deterministic things like test_check_compute_groups_is_faster
|
||||
"tests/bases/test_collections.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"torchmetrics"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Machine learning metrics for distributed, scalable PyTorch applications (used in pytorch-lightning)";
|
||||
homepage = "https://torchmetrics.readthedocs.io";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [
|
||||
SomeoneSerge
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue