My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/epc/default.nix

25 lines
499 B

{ lib
, buildPythonPackage
, fetchPypi
, sexpdata
}:
buildPythonPackage rec {
pname = "epc";
version = "0.0.5";
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;
};
}