My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/twitter-common-dirutil/default.nix

25 lines
589 B

{ 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 ];
};
}