Merge pull request #31415 from jerith666/python-titlecase

pythonPackages.titlecase: init at 0.12.0
This commit is contained in:
Frederik Rietdijk 2017-11-22 19:52:20 +01:00 committed by GitHub
commit 6804ea9288
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{buildPythonPackage, lib, nose, fetchPypi}:
buildPythonPackage rec {
pname = "titlecase";
name = "${pname}-${version}";
version = "0.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "0486i99wf8ssa7sgn81fn6fv6i4rhhq6n751bc740b3hzfbpmpl4";
};
checkInputs = [ nose ];
meta = {
homepage = https://github.com/ppannuto/python-titlecase;
description = "Python Port of John Gruber's titlecase.pl";
license = lib.licenses.mit;
};
}

View File

@ -21295,6 +21295,7 @@ EOF
};
};
titlecase = callPackage ../development/python-modules/titlecase { };
tracing = buildPythonPackage rec {
name = "tracing-${version}";