pythonPackages.entrance: init at 1.1.10

This commit is contained in:
Simon Chatterjee 2019-09-17 12:09:05 +01:00
parent 8d00c48937
commit dfb5755279
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib, fetchPypi, buildPythonPackage, pythonOlder, routerFeatures
, janus, ncclient, paramiko, pyyaml, sanic }:
let
# The `routerFeatures` flag optionally brings in some somewhat heavy
# dependencies, in order to enable interacting with routers
opts = if routerFeatures then {
prePatch = ''
substituteInPlace ./setup.py --replace "extra_deps = []" "extra_deps = router_feature_deps"
'';
extraBuildInputs = [ janus ncclient paramiko ];
} else {
prePatch = "";
extraBuildInputs = [];
};
in
buildPythonPackage rec {
pname = "entrance";
version = "1.1.10";
src = fetchPypi {
inherit pname version;
sha256 = "080qkvkmfw4004cl721l5bvpg001xz8vs6q59dg797kqxfrwk5kw";
};
# The versions of `sanic` and `websockets` in nixpkgs only support 3.6 or later
disabled = pythonOlder "3.6";
# No useful tests
doCheck = false;
propagatedBuildInputs = [ pyyaml sanic ] ++ opts.extraBuildInputs;
prePatch = opts.prePatch;
meta = with lib; {
description = "A server framework for web apps with an Elm frontend";
homepage = https://github.com/ensoft/entrance;
license = licenses.mit;
maintainers = with maintainers; [ simonchatts ];
};
}

View File

@ -563,6 +563,10 @@ in {
diff-match-patch = callPackage ../development/python-modules/diff-match-patch { };
entrance = callPackage ../development/python-modules/entrance { routerFeatures = false; };
entrance-with-router-features = callPackage ../development/python-modules/entrance { routerFeatures = true; };
eradicate = callPackage ../development/python-modules/eradicate { };
face = callPackage ../development/python-modules/face { };