Newer
Older
{ buildPythonPackage, sphinx, circleci-cli, pythonPackages, tahoe-lafs }:
buildPythonPackage rec {
version = "0.0";
name = "secure-access-token-authorizer-${version}";
src = ./.;
depsBuildBuild = [
sphinx
circleci-cli
];
propagatedBuildInputs = with pythonPackages; [
zope_interface
twisted
tahoe-lafs
];
checkInputs = with pythonPackages; [
${pythonPackages.pyflakes}/bin/pyflakes src/_secureaccesstokenauthorizer
${pythonPackages.twisted}/bin/trial _secureaccesstokenauthorizer
'';