1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "mulpyplexer";
9 version = "0.09";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0c5xzci1djy1yi9hxxh8g67l6ms8r7ad7ja20pv8hfbdysdrwkhl";
15 };
16
17 # Project has no tests
18 doCheck = false;
19 pythonImportsCheck = [ "mulpyplexer" ];
20
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 };
27}