python311Packages.pint-pandas: 0.4 -> 0.6

Diff: https://github.com/hgrecco/pint-pandas/compare/0.4...0.6
This commit is contained in:
Gaetan Lepage 2024-07-05 09:10:35 +02:00
parent 04b8f3b11c
commit cd93ad9076

View File

@ -3,6 +3,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
setuptools-scm,
wheel,
@ -13,34 +14,36 @@
buildPythonPackage rec {
pname = "pint-pandas";
version = "0.4";
format = "pyproject";
version = "0.6";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "hgrecco";
repo = "pint-pandas";
rev = version;
hash = "sha256-FuH6wksSCkkL2AyQN46hwTnfeAZFwkWRl6KEEhsxmUY=";
rev = "refs/tags/${version}";
hash = "sha256-5/Qk6HZlfeKkfSqnVA8aADjJ99SUiurYCqSIUBPFIzc=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
dependencies = [
pint
pandas
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
meta = {
broken = stdenv.isDarwin;
description = "Pandas support for pint";
license = licenses.bsd3;
license = lib.licenses.bsd3;
homepage = "https://github.com/hgrecco/pint-pandas";
maintainers = with maintainers; [ doronbehar ];
maintainers = with lib.maintainers; [ doronbehar ];
};
}