Files
nixpkgs/pkgs/development/python-modules/mulpyplexer/default.nix
Ihar Hrachyshka cca3b04b44 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 19:01:23 +01:00

28 lines
592 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "mulpyplexer";
version = "0.09";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0c5xzci1djy1yi9hxxh8g67l6ms8r7ad7ja20pv8hfbdysdrwkhl";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "mulpyplexer" ];
meta = {
description = "Multiplex interactions with lists of Python objects";
homepage = "https://github.com/zardus/mulpyplexer";
license = with lib.licenses; [ bsd2 ];
maintainers = with lib.maintainers; [ fab ];
};
}