mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
python3Packages.pint-pandas: unstable-2022-11-24 -> 0.4
This commit is contained in:
parent
021df35c95
commit
e122cc5840
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user