Merge pull request #239121 from kirillrdy/pandas

python3Packages.pint-pandas: unstable-2022-11-24 -> 0.4
This commit is contained in:
Weijia Wang 2023-06-22 10:40:22 +03:00 committed by GitHub
commit f1992487d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,24 +2,22 @@
, lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, setuptools
, pint
, pandas
, pytestCheckHook
}:
buildPythonPackage {
buildPythonPackage rec {
pname = "pint-pandas";
# Latest release contains bugs and failing tests.
version = "unstable-2022-11-24";
version = "0.4";
format = "pyproject";
src = fetchFromGitHub {
owner = "hgrecco";
repo = "pint-pandas";
rev = "c58a7fcf9123eb65f5e78845077b205e20279b9d";
hash = "sha256-gMZNJSJxtSZvgU4o71ws5ZA6tgD2M5c5oOrn62DRyMI=";
rev = version;
hash = "sha256-FuH6wksSCkkL2AyQN46hwTnfeAZFwkWRl6KEEhsxmUY=";
};
nativeBuildInputs = [
@ -36,7 +34,7 @@ buildPythonPackage {
];
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
broken = stdenv.isDarwin;
description = "Pandas support for pint";
license = licenses.bsd3;
homepage = "https://github.com/hgrecco/pint-pandas";