mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
52 lines
931 B
Nix
52 lines
931 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
nbformat,
|
|
nbclient,
|
|
ipykernel,
|
|
pandas,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
traitlets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "testbook";
|
|
version = "0.4.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nteract";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-qaDgae/5TRpjmjOf7aom7TC5HLHp0PHM/ds47AKtq8U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
nbclient
|
|
nbformat
|
|
];
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
ipykernel
|
|
pandas
|
|
pytestCheckHook
|
|
traitlets
|
|
];
|
|
|
|
pythonImportsCheck = [ "testbook" ];
|
|
|
|
meta = with lib; {
|
|
description = "Unit testing framework extension for testing code in Jupyter Notebooks";
|
|
homepage = "https://testbook.readthedocs.io/";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ djacu ];
|
|
};
|
|
}
|