2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-28 16:13:15 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, twitter-common-lang
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "twitter.common.dirutil";
|
2019-04-16 18:15:41 +01:00
|
|
|
version = "0.3.11";
|
2018-10-28 16:13:15 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 18:15:41 +01:00
|
|
|
sha256 = "49aeecad2434ac23c16abbfc1fccffd3790c056a9eb01468ec26c83e65a10119";
|
2018-10-28 16:13:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ twitter-common-lang ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-28 16:13:15 +00:00
|
|
|
description = "Utilities for manipulating and finding files and directories";
|
|
|
|
homepage = "https://twitter.github.io/commons/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|