Merge pull request #217290 from r-ryantm/auto-update/python310Packages.quantities

python310Packages.quantities: 0.13.0 -> 0.14.1
This commit is contained in:
Fabian Affolter 2023-02-20 16:44:00 +01:00 committed by GitHub
commit 04a05c2e1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 5 deletions

View File

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "neo";
version = "0.11.1";
version = "0.12.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9KIGBEszKtALEAcrDcenCzWfo2XseG+Sq3V+9K5YhHQ=";
hash = "sha256-O2yk/AXf206VPiU+cJlL+7yP4ukJWPvaf6WGDK8/pjo=";
};
propagatedBuildInputs = [
@ -41,6 +41,7 @@ buildPythonPackage rec {
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 ];
};

View File

@ -3,17 +3,28 @@
, fetchPypi
, numpy
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "quantities";
version = "0.13.0";
version = "0.14.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "0fde20115410de21cefa786f3aeae69c1b51bb19ee492190324c1da705e61a81";
hash = "sha256-7+r//AwDZPiRqTJyOc0SSWvMtVzQN6bRv0TecG9yKHc=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
numpy
];
@ -27,11 +38,14 @@ buildPythonPackage rec {
"test_mul"
];
pythonImportsCheck = [ "quantities" ];
pythonImportsCheck = [
"quantities"
];
meta = with lib; {
description = "Quantities is designed to handle arithmetic and conversions of physical quantities";
homepage = "https://python-quantities.readthedocs.io/";
changelog = "https://github.com/python-quantities/python-quantities/blob/v${version}/CHANGES.txt";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};