about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/twitter-common-dirutil/default.nix
blob: df2f614c5a040d6e9f74166763146570d429f56f (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
{ stdenv
, 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 stdenv.lib; {
    description = "Utilities for manipulating and finding files and directories";
    homepage    = "https://twitter.github.io/commons/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ copumpkin ];
  };

}