Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 532 B view raw
1{ lib 2, python 3, buildPythonPackage 4, fetchFromGitHub 5}: 6 7buildPythonPackage rec { 8 pname = "objsize"; 9 version = "0.6.1"; 10 11 src = fetchFromGitHub { 12 owner = "liran-funaro"; 13 repo = pname; 14 rev = version; 15 hash = "sha256-FgRB7EENwNOlC7ynIRxcwucoywNjko494s75kOp5O+w="; 16 }; 17 18 meta = with lib; { 19 description = "Traversal over objects subtree and calculate the total size"; 20 homepage = "https://github.com/liran-funaro/objsize"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ ocfox ]; 23 }; 24}