summary refs log tree commit diff
path: root/pkgs/development/python-modules/twitter-common-dirutil/default.nix
blob: bf9ec099ddbaeb215691caad3840cf5241cf9e9e (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
25
{ lib
, buildPythonPackage
, fetchPypi
, twitter-common-lang
}:

buildPythonPackage rec {
  pname   = "twitter.common.dirutil";
  version = "0.3.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "49aeecad2434ac23c16abbfc1fccffd3790c056a9eb01468ec26c83e65a10119";
  };

  propagatedBuildInputs = [ twitter-common-lang ];

  meta = with lib; {
    description = "Utilities for manipulating and finding files and directories";
    homepage    = "https://twitter.github.io/commons/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ copumpkin ];
  };

}