9 buildPythonPackage rec {
10 pname = "torchsummary";
15 inherit pname version;
16 hash = "sha256-mBv2ieIuDPf5XHRgAvIKJK0mqmudhhE0oUvGzpIjBZA=";
19 build-system = [ setuptools ];
21 dependencies = [ torch ];
23 # no tests in pypi tarball
26 pythonImportsCheck = [ "torchsummary" ];
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 ];