mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
pythonPackages.blis: init at 0.2.4
This commit is contained in:
parent
b631c266ee
commit
54f9e90e4f
38
pkgs/development/python-modules/blis/default.nix
Normal file
38
pkgs/development/python-modules/blis/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cython
|
||||
, hypothesis
|
||||
, numpy
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "blis";
|
||||
version = "0.2.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0c5hd0bim9134sk8wb31cqzvi9c380rbl5zwjiwrq8nnix8a2k1d";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cython
|
||||
];
|
||||
|
||||
|
||||
checkInputs = [
|
||||
cython
|
||||
hypothesis
|
||||
numpy
|
||||
pytest
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "BLAS-like linear algebra library";
|
||||
homepage = https://github.com/explosion/cython-blis;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ danieldk ];
|
||||
};
|
||||
}
|
@ -5429,6 +5429,8 @@ in {
|
||||
|
||||
backports_weakref = callPackage ../development/python-modules/backports_weakref { };
|
||||
|
||||
blis = callPackage ../development/python-modules/blis { };
|
||||
|
||||
srsly = callPackage ../development/python-modules/srsly { };
|
||||
|
||||
thinc = callPackage ../development/python-modules/thinc { };
|
||||
|
Loading…
Reference in New Issue
Block a user