pythonPackages.titlecase: init at 0.12.0
This commit is contained in:
parent
66b63d2f5a
commit
4603679bd2
21
pkgs/development/python-modules/titlecase/default.nix
Normal file
21
pkgs/development/python-modules/titlecase/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -23280,6 +23280,7 @@ EOF
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
titlecase = callPackage ../development/python-modules/titlecase { };
|
||||||
|
|
||||||
tracing = buildPythonPackage rec {
|
tracing = buildPythonPackage rec {
|
||||||
name = "tracing-${version}";
|
name = "tracing-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user