Merge pull request #15220 from bnikolic/python-pweave2

Pweave: init at 0.25
This commit is contained in:
Frederik Rietdijk 2016-05-09 19:15:03 +02:00
commit 0b8ef88942

View File

@ -21002,6 +21002,27 @@ in modules // {
};
});
Pweave = buildPythonPackage (rec {
name = "Pweave-0.25";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/f6/2f/e9735b04747ae5ef29d64e0b215fb0e11f1c89826097ac17342efebbbb84/Pweave-0.25.tar.gz";
sha256 = "1isqjz66c7vxdaqfwpkspki9p4054dsfx7pznwz28ik634hnj3qw";
};
buildInputs = with self; [ mock pkgs.glibcLocales ];
propagatedBuildInputs = with self; [
matplotlib
];
meta = {
description = "Scientific reports with embedded python computations with reST, LaTeX or markdown";
homepage = http://mpastell.com/pweave/ ;
license = licenses.bsd3;
};
});
spyder = callPackage ../applications/science/spyder {
rope = if isPy3k then null else self.rope;
};