python3Packages.neo: 0.10.2 -> 0.11.0

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:13 +02:00
parent eb91570c7a
commit 8fe0a13463

View File

@ -3,24 +3,26 @@
, fetchPypi
, nose
, numpy
, packaging
, quantities
, pythonOlder
}:
buildPythonPackage rec {
pname = "neo";
version = "0.10.2";
version = "0.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-LUIYsIJtruqIDhVSJwYAKew4oAI4zrXwlxONlGfGOZs=";
sha256 = "sha256-zfjhMko/u9Hv1WGNzTfPxJexmXkjvXELWYRywdhGZ0o=";
};
propagatedBuildInputs = [
numpy
packaging
quantities
];