My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/helpdev/default.nix

30 lines
513 B

{ lib
, buildPythonPackage
, fetchPypi
, importlib-metadata
, psutil
}:
buildPythonPackage rec {
pname = "helpdev";
version = "0.7.1";
src = fetchPypi {
inherit pname version;
sha256 = "0gfvj28i82va7c264jl2p4cdsl3lpf9fpb9cyjnis55crfdafqmv";
};
propagatedBuildInputs = [
importlib-metadata
psutil
];
# No tests included in archive
doCheck = false;
meta = {
description = "Extracts information about the Python environment easily";
license = lib.licenses.mit;
};
}