Guest User

Untitled

a guest
Jun 4th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. with import (/home/genesis/devel/nixpkgs) {};
  2. #with import <nixpkgs> { };
  3.  
  4. # see https://nixos.org/nixpkgs/manual/#python-setup.py-bdist_wheel-cannot-create-.whl
  5. # SOURCE_DATE_EPOCH=315532800 python3 setup.py sdist bdist_wheel
  6.  
  7.  
  8.  
  9. python3Packages.buildPythonApplication rec{
  10.   name = "beremiz";
  11.  
  12.   nativeBuildInputs = [ python3 python3Packages.setuptools ];
  13.  
  14.   buildInputs = with python3Packages; [
  15.     #python3
  16.    
  17.     matiec
  18.     twisted
  19.     #wxPython # (v4 is not available)
  20.     #nevow (not 3)
  21.     numpy
  22.     lxml
  23.     # Pyro4 ( beremiz uses pyro3.16 )
  24.     # zeroconf (only python3)
  25.     cycler
  26.     matplotlib
  27.     autobahn
  28.     u-msgpack-python
  29.     simplejson
  30.     # sslpsk https://github.com/drbild/sslpsk
  31.     # posix_spawn https://github.com/JonathonReinhart/python-posix-spawn ?
  32.     # wamp http://wamp.ws/
  33.     zope_interface
  34.   ] ++ devInputs;
  35.  
  36.   devInputs = [
  37.       #mercurial # see https://github.com/NixOS/nixpkgs/pull/56907
  38.       python3Packages.pip
  39.       python3Packages.twine
  40.       gcc
  41.       zlib
  42.     ];
  43. }
Advertisement
Add Comment
Please, Sign In to add comment