mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
python.msgpack-numpy: init 0.4.1
This commit is contained in:
parent
a9e1ae3d29
commit
5568e25fa0
38
pkgs/development/python-modules/msgpack-numpy/default.nix
Normal file
38
pkgs/development/python-modules/msgpack-numpy/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, cython
|
||||||
|
, msgpack-python
|
||||||
|
, numpy
|
||||||
|
, python
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "msgpack-numpy";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1czf125nixzwskiqiw0145kfj15030sp334cb89gp5w4rz3h7img";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cython
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
msgpack-python
|
||||||
|
numpy
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} msgpack_numpy.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Practical Machine Learning for NLP in Python";
|
||||||
|
homepage = https://github.com/lebedov/msgpack-numpy;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ aborsu ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10161,6 +10161,8 @@ in {
|
||||||
|
|
||||||
msgpack = callPackage ../development/python-modules/msgpack {};
|
msgpack = callPackage ../development/python-modules/msgpack {};
|
||||||
|
|
||||||
|
msgpack-numpy = callPackage ../development/python-modules/msgpack-numpy {};
|
||||||
|
|
||||||
msgpack-python = self.msgpack.overridePythonAttrs {
|
msgpack-python = self.msgpack.overridePythonAttrs {
|
||||||
pname = "msgpack-python";
|
pname = "msgpack-python";
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Reference in a new issue