mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 22:54:17 +00:00
python3Packages.scooby: init at 0.7.0
This commit is contained in:
parent
ebf9e988a9
commit
d8010161a6
28
pkgs/development/python-modules/scooby/default.nix
Normal file
28
pkgs/development/python-modules/scooby/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user