depot/third_party/nixpkgs/pkgs/development/python-modules/titlecase/default.nix
Default email 9c6d255489 Project import generated by Copybara.
GitOrigin-RevId: 8133b9cb5f7c00d4fe31c8c2c4b525bc2650bfc0
2020-10-16 20:44:37 +00:00

21 lines
499 B
Nix

{ buildPythonPackage, lib, nose, fetchPypi, regex }:
buildPythonPackage rec {
pname = "titlecase";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "16e279edf085293bc9c44a68ce959c7d6cd5c653e6b5669a3a3640015cb63eb6";
};
propagatedBuildInputs = [ regex ];
checkInputs = [ nose ];
meta = {
homepage = "https://github.com/ppannuto/python-titlecase";
description = "Python Port of John Gruber's titlecase.pl";
license = lib.licenses.mit;
};
}