Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pint-pandas / default.nix
blobd446483502236b98f9cbbc4c481651a9b11cbcc7
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchFromGitHub
5 , setuptools
6 , setuptools-scm
7 , wheel
8 , pint
9 , pandas
10 , pytestCheckHook
13 buildPythonPackage rec {
14   pname = "pint-pandas";
15   version = "0.4";
16   format = "pyproject";
18   src = fetchFromGitHub {
19     owner = "hgrecco";
20     repo = "pint-pandas";
21     rev = version;
22     hash = "sha256-FuH6wksSCkkL2AyQN46hwTnfeAZFwkWRl6KEEhsxmUY=";
23   };
25   nativeBuildInputs = [
26     setuptools
27     setuptools-scm
28     wheel
29   ];
31   propagatedBuildInputs = [
32     pint
33     pandas
34   ];
36   nativeCheckInputs = [
37     pytestCheckHook
38   ];
40   meta = with lib; {
41     broken = stdenv.isDarwin;
42     description = "Pandas support for pint";
43     license = licenses.bsd3;
44     homepage = "https://github.com/hgrecco/pint-pandas";
45     maintainers = with maintainers; [ doronbehar ];
46   };