depot/third_party/nixpkgs/pkgs/development/python-modules/titlecase/default.nix

26 lines
589 B
Nix
Raw Normal View History

{ buildPythonPackage, lib, fetchPypi, regex }:
buildPythonPackage rec {
pname = "titlecase";
version = "2.3";
src = fetchPypi {
inherit pname version;
sha256 = "9a1595ed9b88f3ce4362a7602ee63cf074e10ac80d1256b32ea1ec5ffa265fa0";
};
propagatedBuildInputs = [ regex ];
# no tests run
doCheck = false;
pythonImportsCheck = [ "titlecase" ];
meta = with lib; {
homepage = "https://github.com/ppannuto/python-titlecase";
description = "Python Port of John Gruber's titlecase.pl";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}