Merge pull request #108972 from fabaff/mulpyplexer
python3Packages.mulpyplexer: init at 0.08
This commit is contained in:
commit
b70cf9fdbf
25
pkgs/development/python-modules/mulpyplexer/default.nix
Normal file
25
pkgs/development/python-modules/mulpyplexer/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mulpyplexer";
|
||||
version = "0.08";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1zn5d1vyhfjp8x9z5mr9gv8m8gmi3s3jv3kqb790xzi1kqi0p4ya";
|
||||
};
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "mulpyplexer" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multiplex interactions with lists of Python objects";
|
||||
homepage = "https://github.com/zardus/mulpyplexer";
|
||||
license = with licenses; [ bsd2 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4088,6 +4088,8 @@ in {
|
||||
|
||||
mt-940 = callPackage ../development/python-modules/mt-940 { };
|
||||
|
||||
mulpyplexer = callPackage ../development/python-modules/mulpyplexer { };
|
||||
|
||||
multidict = callPackage ../development/python-modules/multidict { };
|
||||
|
||||
multi_key_dict = callPackage ../development/python-modules/multi_key_dict { };
|
||||
|
Loading…
Reference in New Issue
Block a user