pythonPackages.supervise_api: 0.4.0 -> 0.5.3

Upstream added tests, so we run those too now.
This commit is contained in:
Spencer Baugh 2018-05-03 14:42:01 +00:00
parent 773fe1fefa
commit 62855fc04a

View File

@ -4,17 +4,16 @@
, supervise , supervise
, isPy3k , isPy3k
, whichcraft , whichcraft
, utillinux
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "supervise_api"; pname = "supervise_api";
version = "0.4.0"; version = "0.5.3";
name = "${pname}-${version}";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "029h1mlfhkm9lw043rawh24ld8md620y94k6c1l9hs5vvyq4fs84"; sha256 = "0dakc1h2ih1bw67y137wp0vph8d3y2lx5d70b8dgggy1zbpqxl1m";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -22,9 +21,7 @@ buildPythonPackage rec {
] ++ lib.optionals ( !isPy3k ) [ ] ++ lib.optionals ( !isPy3k ) [
whichcraft whichcraft
]; ];
checkInputs = [ utillinux ];
# no tests
doCheck = false;
meta = { meta = {
description = "An API for running processes safely and securely"; description = "An API for running processes safely and securely";