Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 453 B view raw
1{buildPythonPackage, lib, nose, fetchPypi}: 2 3buildPythonPackage rec { 4 pname = "titlecase"; 5 version = "1.1.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "16e279edf085293bc9c44a68ce959c7d6cd5c653e6b5669a3a3640015cb63eb6"; 10 }; 11 12 checkInputs = [ nose ]; 13 14 meta = { 15 homepage = "https://github.com/ppannuto/python-titlecase"; 16 description = "Python Port of John Gruber's titlecase.pl"; 17 license = lib.licenses.mit; 18 }; 19} 20