forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
60 lines
977 B
Nix
60 lines
977 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, cdcs
|
|
, datamodeldict
|
|
, fetchFromGitHub
|
|
, ipython
|
|
, lxml
|
|
, numpy
|
|
, pandas
|
|
, pymongo
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, tqdm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yabadaba";
|
|
version = "0.1.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "usnistgov";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-0Rwo2d3vEfXmeZvZA1udbGKxUERymeVhvyu+okqQDJk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cdcs
|
|
datamodeldict
|
|
ipython
|
|
lxml
|
|
numpy
|
|
pandas
|
|
pymongo
|
|
tqdm
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|