depot/third_party/nixpkgs/pkgs/development/python-modules/neo/default.nix
Default email 5557ff764c Project import generated by Copybara.
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
2023-02-22 11:55:15 +01:00

48 lines
859 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, numpy
, packaging
, quantities
, pythonOlder
}:
buildPythonPackage rec {
pname = "neo";
version = "0.12.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-O2yk/AXf206VPiU+cJlL+7yP4ukJWPvaf6WGDK8/pjo=";
};
propagatedBuildInputs = [
numpy
packaging
quantities
];
nativeCheckInputs = [
nose
];
checkPhase = ''
nosetests --exclude=iotest
'';
pythonImportsCheck = [
"neo"
];
meta = with lib; {
description = "Package for representing electrophysiology data";
homepage = "https://neuralensemble.org/neo/";
changelog = "https://neo.readthedocs.io/en/${version}/releases/${version}.html";
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}