pythonPackages.epc: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
266ebed4a8
commit
cb6be049d3
25
pkgs/development/python-modules/epc/default.nix
Normal file
25
pkgs/development/python-modules/epc/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user