Skip to content

Instantly share code, notes, and snippets.

@milibopp
Created July 7, 2017 11:18
Show Gist options
  • Save milibopp/888cd0ad10f25ca9f5ea5edde136a905 to your computer and use it in GitHub Desktop.
Save milibopp/888cd0ad10f25ca9f5ea5edde136a905 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
pkgs.python.pkgs.buildPythonPackage rec {
name = "vispy-master";
src = pkgs.fetchgit {
url = "https://github.com/vispy/vispy";
sha256 = "1zm0gglvzlhliicwv5rm9nv34f1ql2i5vns8ybqr78r4bcz0f6dp";
rev = "38001b70d54a5519eb296d44a196c081fcbd7fad";
};
propagatedBuildInputs = with pkgs.python36.pkgs; [ numpy ];
meta = {
homepage = "http://vispy.org/";
description = "Interactive scientific data visualization";
license = licenses.bsd3;
maintainers = [];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment