fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
25 lines
585 B
Nix
25 lines
585 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|