nixpkgs/pkgs/development/python-modules/scooby/default.nix
2023-09-24 22:14:12 +02:00

67 lines
1.3 KiB
Nix

{ lib
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, numpy
, pytest-console-scripts
, pytestCheckHook
, pythonOlder
, pyvips
, scipy
, setuptools-scm
}:
buildPythonPackage rec {
pname = "scooby";
version = "0.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "banesullivan";
repo = "scooby";
rev = "refs/tags/v${version}";
hash = "sha256-lu+iuO0871DpFRDPzDGClKXYnB8w/lVsUCc39JXDmNo=";
};
nativeBuildInputs = [
setuptools-scm
];
nativeCheckInputs = [
beautifulsoup4
numpy
pytest-console-scripts
pytestCheckHook
pyvips
scipy
];
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
preCheck = ''
export PATH="$PATH:$out/bin";
'';
pythonImportsCheck = [
"scooby"
];
disabledTests = [
# Tests have additions requirements (e.g., time and module)
"test_get_version"
"test_tracking"
"test_import_os_error"
"test_import_time"
];
meta = with lib; {
changelog = "https://github.com/banesullivan/scooby/releases/tag/v${version}";
description = "A lightweight tool for reporting Python package versions and hardware resources";
homepage = "https://github.com/banesullivan/scooby";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};
}