depot/third_party/nixpkgs/pkgs/development/python-modules/scooby/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

28 lines
597 B
Nix

{ 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 = "A lightweight tool for reporting Python package versions and hardware resources";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};
}