mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-16 12:38:39 +03:00
17 lines
416 B
Nix
17 lines
416 B
Nix
![]() |
{ lib, fetchurl, buildPythonPackage }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "empy";
|
||
|
version = "3.3.4";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://www.alcyone.com/software/empy/empy-${version}.tar.gz";
|
||
|
sha256 = "1cgikljjcqxgz168prpvb0bnirbdxf9wmgj0vlzzhzzwf4a229li";
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
description = "A powerful and robust templating system for Python";
|
||
|
homepage = http://www.alcyone.com/software/empy/;
|
||
|
};
|
||
|
}
|