evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / torchsummary / default.nix
blob8805e8fa2117bd0410e3627b3565a21e43ac45b5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   torch,
7 }:
9 buildPythonPackage rec {
10   pname = "torchsummary";
11   version = "1.5.1";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-mBv2ieIuDPf5XHRgAvIKJK0mqmudhhE0oUvGzpIjBZA=";
17   };
19   build-system = [ setuptools ];
21   dependencies = [ torch ];
23   # no tests in pypi tarball
24   doCheck = false;
26   pythonImportsCheck = [ "torchsummary" ];
28   meta = {
29     description = "Model summary in PyTorch similar to `model.summary()` in Keras";
30     homepage = "https://github.com/sksq96/pytorch-summary";
31     license = lib.licenses.mit;
32     maintainers = with lib.maintainers; [ tomasajt ];
33   };