nixpkgs/pkgs/development/python-modules/empy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
476 B
Nix
Raw Normal View History

2021-12-05 07:58:01 +01:00
{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "empy";
version = "3.3.4";
src = fetchPypi {
inherit pname version;
sha256 = "c6xJeFtgFHnfTqGKfHm8EwSop8NMArlHLPEgauiPAbM=";
};
pythonImportsCheck = [ "em" ];
meta = with lib; {
homepage = "http://www.alcyone.com/software/empy/";
description = "A templating system for Python.";
maintainers = with maintainers; [ nkalupahana ];
license = licenses.lgpl21Only;
};
}