pythonPackages.epc: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 14:32:29 -04:00
committed by Frederik Rietdijk
parent 266ebed4a8
commit cb6be049d3
2 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, sexpdata
}:
buildPythonPackage rec {
pname = "epc";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "30b594bd4a4acbd5bda0d3fa3d25b4e8117f2ff8f24d2d1e3e36c90374f3c55e";
};
propagatedBuildInputs = [ sexpdata ];
doCheck = false;
meta = with stdenv.lib; {
description = "EPC (RPC stack for Emacs Lisp) implementation in Python";
homepage = "https://github.com/tkf/python-epc";
license = licenses.gpl3;
};
}