depot/third_party/nixpkgs/pkgs/development/python-modules/essentials/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
828 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonImportsCheckHook,
lib,
}:
buildPythonPackage rec {
pname = "essentials";
version = "1.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "Neoteroi";
repo = "essentials";
rev = "v${version}";
hash = "sha256-WMHjBVkeSoQ4Naj1U7Bg9j2hcoErH1dx00BPKiom9T4=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "essentials" ];
meta = with lib; {
homepage = "https://github.com/Neoteroi/essentials";
description = "General purpose classes and functions";
changelog = "https://github.com/Neoteroi/essentials/releases/v${version}";
license = licenses.mit;
maintainers = with maintainers; [
aldoborrero
zimbatm
];
};
}