Created
July 7, 2017 11:18
-
-
Save milibopp/888cd0ad10f25ca9f5ea5edde136a905 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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