nixpkgs/pkgs/development/python-modules/utils/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

34 lines
670 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "utils";
version = "1.0.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "haaksmash";
repo = "pyutils";
rev = version;
sha256 = "07pr39cfw5ayzkp6h53y7lfpd0w19pphsdzsf100fsyy3npavgbr";
};
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "utils" ];
meta = {
description = "Python set of utility functions and objects";
homepage = "https://github.com/haaksmash/pyutils";
license = with lib.licenses; [ lgpl3Only ];
maintainers = with lib.maintainers; [ fab ];
};
}