Skip to content
Snippets Groups Projects
secure-access-token-authorizer.nix 610 B
Newer Older
  • Learn to ignore specific revisions
  • { 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; [
    
        fixtures
    
        hypothesis
    
        ${pythonPackages.pyflakes}/bin/pyflakes src/_secureaccesstokenauthorizer
    
        ${pythonPackages.twisted}/bin/trial _secureaccesstokenauthorizer
      '';