python3Packages.scooby: init at 0.7.0

This commit is contained in:
Weijia Wang 2023-01-09 21:53:04 +01:00
parent ebf9e988a9
commit d8010161a6
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
}:
buildPythonPackage rec {
pname = "scooby";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-scD/uuAtepatt8Yn7b6PJMfSj9AT7iOy0HuVHyVvEhk=";
};
nativeBuildInputs = [
setuptools-scm
];
pythonImportsCheck = [ "scooby" ];
meta = with lib; {
homepage = "https://github.com/banesullivan/scooby";
description = "Report hardware information and Python package versions";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};
}

View file

@ -10163,6 +10163,8 @@ self: super: with self; {
scour = callPackage ../development/python-modules/scour { };
scooby = callPackage ../development/python-modules/scooby { };
scp = callPackage ../development/python-modules/scp { };
scramp = callPackage ../development/python-modules/scramp { };