mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
pythonPackages.libmr: init at 0.1.9
This commit is contained in:
parent
0f5f873e93
commit
6a31bbbe8f
25
pkgs/development/python-modules/libmr/default.nix
Normal file
25
pkgs/development/python-modules/libmr/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, numpy, cython }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libmr";
|
||||
version = "0.1.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "43ccd86693b725fa3abe648c8cdcef17ba5fa46b5528168829e5f9b968dfeb70";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy cython ];
|
||||
|
||||
# No tests in the pypi tarball
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "libMR provides core MetaRecognition and Weibull fitting functionality";
|
||||
homepage = https://github.com/Vastlab/libMR;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ psyanticy ];
|
||||
};
|
||||
}
|
||||
|
@ -374,6 +374,8 @@ in {
|
||||
mpi = pkgs.openmpi;
|
||||
};
|
||||
|
||||
libmr = callPackage ../development/python-modules/libmr { };
|
||||
|
||||
lmtpd = callPackage ../development/python-modules/lmtpd { };
|
||||
|
||||
logster = callPackage ../development/python-modules/logster { };
|
||||
|
Loading…
Reference in New Issue
Block a user