Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / mulpyplexer / default.nix
blobee27dc20766d0f3dbd239f6da53d9ac078ed8658
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "mulpyplexer";
8   version = "0.09";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0c5xzci1djy1yi9hxxh8g67l6ms8r7ad7ja20pv8hfbdysdrwkhl";
13   };
15   # Project has no tests
16   doCheck = false;
17   pythonImportsCheck = [ "mulpyplexer" ];
19   meta = with lib; {
20     description = "Multiplex interactions with lists of Python objects";
21     homepage = "https://github.com/zardus/mulpyplexer";
22     license = with licenses; [ bsd2 ];
23     maintainers = with maintainers; [ fab ];
24   };