blob: 81864a3de9f1c68e28a0f641f3ec9c9969c4787d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
buildPythonPackage,
fetchPypi,
sexpdata,
}:
buildPythonPackage rec {
pname = "epc";
version = "0.0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a14d2ea74817955a20eb00812e3a4630a132897eb4d976420240f1152c0d7d25";
};
propagatedBuildInputs = [ sexpdata ];
doCheck = false;
meta = with lib; {
description = "EPC (RPC stack for Emacs Lisp) implementation in Python";
homepage = "https://github.com/tkf/python-epc";
license = licenses.gpl3;
};
}
|