emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / utils / default.nix
blobe76fa6e6bab0653b25be863c39678acf4969b89b
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   mock,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "utils";
11   version = "1.0.1";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "haaksmash";
16     repo = "pyutils";
17     rev = version;
18     sha256 = "07pr39cfw5ayzkp6h53y7lfpd0w19pphsdzsf100fsyy3npavgbr";
19   };
21   nativeCheckInputs = [
22     mock
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [ "utils" ];
28   meta = with lib; {
29     description = "Python set of utility functions and objects";
30     homepage = "https://github.com/haaksmash/pyutils";
31     license = with licenses; [ lgpl3Only ];
32     maintainers = with maintainers; [ fab ];
33   };