pythonPackages.janus: init at 0.4.0
This commit is contained in:
parent
ab5a5c15cb
commit
8d00c48937
20
pkgs/development/python-modules/janus/default.nix
Normal file
20
pkgs/development/python-modules/janus/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "janus";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "cfc221683160b91b35bae1917e2957b78dad10a2e634f4f8ed119ed72e2a88ef";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mixed sync-async queue";
|
||||
homepage = "https://github.com/aio-libs/janus";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.simonchatts ];
|
||||
};
|
||||
}
|
@ -689,6 +689,8 @@ in {
|
||||
|
||||
inquirer = callPackage ../development/python-modules/inquirer { };
|
||||
|
||||
janus = callPackage ../development/python-modules/janus { };
|
||||
|
||||
jira = callPackage ../development/python-modules/jira { };
|
||||
|
||||
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
|
||||
|
Loading…
Reference in New Issue
Block a user