emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / mulpyplexer / default.nix
blob5ff36083ef864e2b9623949003d924bf30ed8979
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "mulpyplexer";
9   version = "0.09";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0c5xzci1djy1yi9hxxh8g67l6ms8r7ad7ja20pv8hfbdysdrwkhl";
15   };
17   # Project has no tests
18   doCheck = false;
19   pythonImportsCheck = [ "mulpyplexer" ];
21   meta = with lib; {
22     description = "Multiplex interactions with lists of Python objects";
23     homepage = "https://github.com/zardus/mulpyplexer";
24     license = with licenses; [ bsd2 ];
25     maintainers = with maintainers; [ fab ];
26   };