python3Packages.pandas-flavor: init at 0.8.1
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools-scm,
|
||||
|
||||
# test framework
|
||||
pytestCheckHook,
|
||||
pytest-cov-stub,
|
||||
|
||||
# dependencies
|
||||
pandas,
|
||||
xarray,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "pandas-flavor";
|
||||
version = "0.8.1";
|
||||
pyproject = true;
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pyjanitor-devs";
|
||||
repo = "pandas_flavor";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-c1pHH8vQOl1qicJJCVGuQoPbJp9uK03KDVr+rJWByhY=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
pandas
|
||||
xarray
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-cov-stub
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pandas_flavor"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "The easy way to write your own flavor of Pandas";
|
||||
homepage = "https://github.com/pyjanitor-devs/pandas_flavor";
|
||||
changelog = "https://github.com/pyjanitor-devs/pandas_flavor/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ grandjeanlab ];
|
||||
};
|
||||
})
|
||||
@@ -12257,6 +12257,8 @@ self: super: with self; {
|
||||
|
||||
pandas-datareader = callPackage ../development/python-modules/pandas-datareader { };
|
||||
|
||||
pandas-flavor = callPackage ../development/python-modules/pandas-flavor { };
|
||||
|
||||
pandas-stubs = callPackage ../development/python-modules/pandas-stubs { };
|
||||
|
||||
pandas-ta = callPackage ../development/python-modules/pandas-ta { };
|
||||
|
||||
Reference in New Issue
Block a user