pythonPackages.pomegranate: 0.8.0 -> 0.8.1
Also now using GitHub instead of PiPy, because the PiPy version fails to build. Not sure why they aren't identical.
This commit is contained in:
parent
7e31aef88a
commit
f5b773beec
@ -1,13 +1,15 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, cython, networkx, joblib, nose }:
|
{ stdenv, buildPythonPackage, fetchFromGitHub, fetchPypi, numpy, scipy, cython, networkx, joblib, nose }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pomegranate";
|
pname = "pomegranate";
|
||||||
version = "0.8.0";
|
version = "0.8.1";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
repo = pname;
|
||||||
sha256 = "6b03d05bffbe46c674800652cf273a8d338a2e40001b763cd6925aac0b578a43";
|
owner = "jmschrei";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "085nka5bh88bxbd5vl1azyv9cfpp6grz2ngclc85f9kgccac1djr";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy scipy cython networkx joblib ];
|
propagatedBuildInputs = [ numpy scipy cython networkx joblib ];
|
||||||
|
Loading…
Reference in New Issue
Block a user