about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/objsize/default.nix
blob: 18efa2b3494a9865adcf8e01539ee0522be21352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, python
, buildPythonPackage
, fetchFromGitHub
}:

buildPythonPackage rec {
  pname = "objsize";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "liran-funaro";
    repo = pname;
    rev = version;
    hash = "sha256-FgRB7EENwNOlC7ynIRxcwucoywNjko494s75kOp5O+w=";
  };

  meta = with lib; {
    description = "Traversal over objects subtree and calculate the total size";
    homepage = "https://github.com/liran-funaro/objsize";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ocfox ];
  };
}