mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 20:44:12 +00:00
python3Packages.intake-parquet: init at 0.2.3
This commit is contained in:
parent
ff34dbb4fa
commit
d49ca24857
45
pkgs/development/python-modules/intake-parquet/default.nix
Normal file
45
pkgs/development/python-modules/intake-parquet/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, pandas
|
||||
, dask
|
||||
, fastparquet
|
||||
, pyarrow
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "intake-parquet";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intake";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "037jd3qkk6dybssp570kzvaln2c6pk2avd2b5mll42gaxdxxnp02";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pandas
|
||||
dask
|
||||
fastparquet
|
||||
pyarrow
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# Break circular dependency
|
||||
substituteInPlace requirements.txt \
|
||||
--replace "intake" ""
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
|
||||
#pythonImportsCheck = [ "intake_parquet" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Parquet plugin for Intake";
|
||||
homepage = "https://github.com/intake/intake-parquet";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -3644,6 +3644,8 @@ in {
|
||||
|
||||
intake = callPackage ../development/python-modules/intake { };
|
||||
|
||||
intake-parquet = callPackage ../development/python-modules/intake-parquet { };
|
||||
|
||||
intbitset = callPackage ../development/python-modules/intbitset { };
|
||||
|
||||
intelhex = callPackage ../development/python-modules/intelhex { };
|
||||
|
Loading…
Reference in New Issue
Block a user