python3Packages.yabadaba: init at 0.1.2
This commit is contained in:
parent
baedfc4da9
commit
fc639493a0
57
pkgs/development/python-modules/yabadaba/default.nix
Normal file
57
pkgs/development/python-modules/yabadaba/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, cdcs
|
||||
, datamodeldict
|
||||
, fetchFromGitHub
|
||||
, ipython
|
||||
, lxml
|
||||
, numpy
|
||||
, pandas
|
||||
, pymongo
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "yabadaba";
|
||||
version = "0.1.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "usnistgov";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Svw15epiSMEGMuFuMLqX2C9YFGtRtdg7DW2OVLPRmNI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cdcs
|
||||
datamodeldict
|
||||
ipython
|
||||
lxml
|
||||
numpy
|
||||
pandas
|
||||
pymongo
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"yabadaba"
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d);
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Abstraction layer allowing for common interactions with databases and records";
|
||||
homepage = "https://github.com/usnistgov/yabadaba";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -10900,6 +10900,8 @@ in {
|
||||
|
||||
xxhash = callPackage ../development/python-modules/xxhash { };
|
||||
|
||||
yabadaba = callPackage ../development/python-modules/yabadaba { };
|
||||
|
||||
yahooweather = callPackage ../development/python-modules/yahooweather { };
|
||||
|
||||
yalesmartalarmclient = callPackage ../development/python-modules/yalesmartalarmclient { };
|
||||
|
Loading…
Reference in New Issue
Block a user