Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / typogrify / default.nix
blob25445d8a7d2945615049af421ba15ba368d9ac60
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 , django
6 , smartypants
7 , jinja2
8 }:
10 buildPythonPackage rec {
11   pname = "typogrify";
12   version = "2.0.7";
13   disabled = isPyPy;
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "8be4668cda434163ce229d87ca273a11922cb1614cb359970b7dc96eed13cb38";
18   };
20   propagatedBuildInputs = [ django smartypants jinja2 ];
22   # Wants to set up Django
23   doCheck = false;
25   meta = with lib; {
26     description = "Filters to enhance web typography, including support for Django & Jinja templates";
27     homepage = "https://github.com/mintchaos/typogrify";
28     license = licenses.bsd3;
29     maintainers = with maintainers; [ ];
30   };