Advertisement
evanjs

irc3.nix

Sep 1st, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. { lib, buildPythonPackage, fetchPypi, python3Packages }:
  2.  
  3. buildPythonPackage rec {
  4. pname = "irc3";
  5. version = "1.1.3";
  6.  
  7. src = fetchPypi {
  8. inherit pname version;
  9. sha256 = "154913b379f4e5e803cf2e14e1b5272138b495a10003a6c1c6bb969c415a3283";
  10. };
  11.  
  12. buildInputs = [
  13. python3Packages.pytestrunner
  14. ];
  15.  
  16. propagatedBuildInputs = [
  17. python3Packages.venusian
  18. python3Packages.docopt
  19. ];
  20.  
  21. doCheck = false;
  22.  
  23. meta = with lib; {
  24. homepage = https://github.com/gawel/irc3/;
  25. description = "A pluggable irc client library based on python’s asyncio.";
  26. license = licenses.bsd3;
  27. maintainers = with maintainers; [ bruh ];
  28. };
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement