mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Pweave: init at 0.25
This commit is contained in:
parent
97a523d053
commit
ce09466fe5
1 changed files with 21 additions and 0 deletions
|
@ -20919,6 +20919,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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue