Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / empy / default.nix
blob544506efb0d4428f860ab3611e871dd4f036fe7b
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "empy";
5   version = "3.3.4";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "c6xJeFtgFHnfTqGKfHm8EwSop8NMArlHLPEgauiPAbM=";
9   };
10   pythonImportsCheck = [ "em" ];
11   meta = with lib; {
12     homepage = "http://www.alcyone.com/software/empy/";
13     description = "A templating system for Python.";
14     maintainers = with maintainers; [ nkalupahana ];
15     license = licenses.lgpl21Only;
16   };