diff options
Diffstat (limited to 'pkgs/development/python-modules/scooby/default.nix')
-rw-r--r-- | pkgs/development/python-modules/scooby/default.nix | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/scooby/default.nix b/pkgs/development/python-modules/scooby/default.nix index 869a1a589501..90be3a653872 100644 --- a/pkgs/development/python-modules/scooby/default.nix +++ b/pkgs/development/python-modules/scooby/default.nix @@ -1,19 +1,20 @@ -{ lib -, beautifulsoup4 -, buildPythonPackage -, fetchFromGitHub -, numpy -, pytest-console-scripts -, pytestCheckHook -, pythonOlder -, pyvips -, scipy -, setuptools-scm +{ + lib, + beautifulsoup4, + buildPythonPackage, + fetchFromGitHub, + numpy, + pytest-console-scripts, + pytestCheckHook, + pythonOlder, + pyvips, + scipy, + setuptools-scm, }: buildPythonPackage rec { pname = "scooby"; - version = "0.9.2"; + version = "0.10.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -22,12 +23,10 @@ buildPythonPackage rec { owner = "banesullivan"; repo = "scooby"; rev = "refs/tags/v${version}"; - hash = "sha256-x6GPRo0OuXJtN41urviY0joZKzq0SQjUdRBpIylgcXY="; + hash = "sha256-KXhLN8KPz61l+4v88+kVSvodT6OXDJ3Pw9A9aFWSqYE="; }; - nativeBuildInputs = [ - setuptools-scm - ]; + nativeBuildInputs = [ setuptools-scm ]; nativeCheckInputs = [ beautifulsoup4 @@ -42,9 +41,7 @@ buildPythonPackage rec { export PATH="$PATH:$out/bin"; ''; - pythonImportsCheck = [ - "scooby" - ]; + pythonImportsCheck = [ "scooby" ]; disabledTests = [ # Tests have additions requirements (e.g., time and module) @@ -58,7 +55,7 @@ buildPythonPackage rec { 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"; + description = "Lightweight tool for reporting Python package versions and hardware resources"; mainProgram = "scooby"; homepage = "https://github.com/banesullivan/scooby"; license = licenses.mit; |