python.pkgs: move my several packages to separate files

This commit is contained in:
Nikolay Amiantov
2017-07-26 20:32:29 +03:00
parent 40a568b395
commit 44a18ddd31
4 changed files with 72 additions and 61 deletions

View File

@@ -0,0 +1,23 @@
{ lib, fetchurl, buildPythonPackage, numpy }:
buildPythonPackage rec {
name = "hmmlearn-${version}";
version = "0.2.0";
src = fetchurl {
url = "mirror://pypi/h/hmmlearn/${name}.tar.gz";
sha256 = "0qc3fkdyrgfg31y1a8jzs83dxkjw78pqkdm44lll1iib63w4cik9";
};
propagatedBuildInputs = [ numpy ];
doCheck = false;
meta = with lib; {
description = "Hidden Markov Models in Python with scikit-learn like API";
homepage = "https://github.com/hmmlearn/hmmlearn";
license = licenses.bsd3;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.unix;
};
}